From abc0de079b895af1b705894eb2b63596e3e37274 Mon Sep 17 00:00:00 2001
From: David Luevano Alvarado <david@luevano.xyz>
Date: Tue, 13 Dec 2022 20:44:08 -0600
Subject: add pyssg.xyz configs and templates

---
 pyssg.xyz/plt/base.html        | 12 +++-------
 pyssg.xyz/plt/body/footer.html | 33 ++++++++++++++++++++++++++++
 pyssg.xyz/plt/body/header.html | 21 ++++++++++++++++++
 pyssg.xyz/plt/body_footer.html | 27 -----------------------
 pyssg.xyz/plt/body_header.html | 21 ------------------
 pyssg.xyz/plt/root_index.html  | 31 --------------------------
 pyssg.xyz/plt/root_page.html   | 50 ++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 107 insertions(+), 88 deletions(-)
 create mode 100644 pyssg.xyz/plt/body/footer.html
 create mode 100644 pyssg.xyz/plt/body/header.html
 delete mode 100644 pyssg.xyz/plt/body_footer.html
 delete mode 100644 pyssg.xyz/plt/body_header.html
 delete mode 100644 pyssg.xyz/plt/root_index.html
 create mode 100644 pyssg.xyz/plt/root_page.html

(limited to 'pyssg.xyz/plt')

diff --git a/pyssg.xyz/plt/base.html b/pyssg.xyz/plt/base.html
index 8f9fbdc..d5cb77b 100644
--- a/pyssg.xyz/plt/base.html
+++ b/pyssg.xyz/plt/base.html
@@ -9,27 +9,22 @@
     {%block head_title%}{%endblock head_title%}
     {%block head_description%}{%endblock head_description%}
     {%block head_rss%}{%endblock head_rss%}
-
     <!-- general style -->
     <link rel="stylesheet" type="text/css" href="css/style.css">
     <link rel="stylesheet" type="text/css" href="fork-awesome/css/fork-awesome.min.css">
     <link rel="stylesheet" type="text/css" href="font-awesome/css/all.min.css">
-
     <!-- theme related -->
     <script type="text/javascript" src="scripts/theme.js"></script>
     <link id="theme-css" rel="stylesheet" type="text/css" href="css/theme.css">
-
-    <!-- extra -->>
+    <!-- extra -->
     {%block head_extra%}{%endblock head_extra%}
-
     <!-- og meta -->
     {%block head_og%}{%endblock head_og%}
   </head>
 
   <body>
     <header>
-      {%import "body_header.html" as body_header%}
-      {{body_header.print(config)}}
+      {%block body_header%}{%endblock body_header%}
     </header>
 
     <main>
@@ -37,8 +32,7 @@
     </main>
 
     <footer>
-      {%import "body_footer.html" as body_footer%}
-      {{body_footer.print(config)}}
+      {%block body_footer%}{%endblock body_footer%}
     </footer>
   </body>
 </html>
\ No newline at end of file
diff --git a/pyssg.xyz/plt/body/footer.html b/pyssg.xyz/plt/body/footer.html
new file mode 100644
index 0000000..32dcaf0
--- /dev/null
+++ b/pyssg.xyz/plt/body/footer.html
@@ -0,0 +1,33 @@
+{%macro contact(config)%}
+<span>
+  <i class="fas fa-address-card" alt="Contact"></i>
+  <a href="{{config['url']['main']}}/contact.html">Contact</a>
+</span>
+{%endmacro%}
+
+{%macro donate(config)%}
+<span>
+  <i class="fas fa-donate" alt="Donate"></i>
+  <a href="{{config['url']['main']}}/donate.html">Donate</a>
+</span>
+{%endmacro%}
+
+{%macro rss(config)%}
+<span>
+  <i class="fas fa-rss" alt="RSS"></i>
+  <a target="_blank" href="{{config['url']['main']}}/rss.xml">RSS</a>
+</span>
+{%endmacro%}
+
+{%macro created_with()%}
+<span class="created-with">
+  <i class="fas fa-hammer" alt="Hammer"></i>
+  Created with <a href="https://github.com/luevano/pyssg">pyssg</a>
+</span>
+{%endmacro%}
+
+{%macro copyright()%}
+<span class="copyright">
+  Copyright <i class="far fa-copyright" alt="Copyright"></i> 2023 David Luévano Alvarado
+</span>
+{%endmacro%}
\ No newline at end of file
diff --git a/pyssg.xyz/plt/body/header.html b/pyssg.xyz/plt/body/header.html
new file mode 100644
index 0000000..9b38511
--- /dev/null
+++ b/pyssg.xyz/plt/body/header.html
@@ -0,0 +1,21 @@
+{%macro print(config)%}
+<nav>
+  <ul>
+    <li>
+      <a href="{{config['url']['main']}}"><i class="fas fa-home" alt="Home"></i><span>Home</span></a>
+    </li>
+
+    <li><i class="fab fa-git" alt="Git"></i><span>Git</span>
+      <ul>
+        <li><a href="https://git.luevano.xyz/" target="_blank"><i class="fab fa-git-alt" alt="Git-alt"></i></a></li>
+
+        <li><a href="https://github.com/luevano" target="_blank"><i class="fab fa-github" alt="Github"></i></a></li>
+
+        <li><a href="https://gitlab.com/dluevano" target="_blank"><i class="fab fa-gitlab" alt="Gitlab"></i></a></li>
+      </ul>
+    </li>
+  </ul>
+</nav>
+
+<button class="theme-switcher" onclick="toggleTheme()"><i class="fas fa-moon"></i><i class="fas fa-sun"></i></button>
+{%endmacro%}
\ No newline at end of file
diff --git a/pyssg.xyz/plt/body_footer.html b/pyssg.xyz/plt/body_footer.html
deleted file mode 100644
index 1bcf4c6..0000000
--- a/pyssg.xyz/plt/body_footer.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{%macro print(config)%}
-<span>
-  <i class="fas fa-address-card" alt="Contact"></i>
-  <a href="{{config['url']['main']}}/contact.html">Contact</a>
-</span>
-
-<span>
-  <i class="fas fa-donate" alt="Donate"></i>
-  <a href="{{config['url']['main']}}/donate.html">Donate</a>
-</span>
-
-<span>
-  <i class="fas fa-rss" alt="RSS"></i>
-  <a target="_blank" href="{{config['url']['main']}}/rss.xml">RSS</a>
-</span>
-
-<br>
-<span class="created-with">
-  <i class="fas fa-hammer" alt="Hammer"></i>
-  Created with <a href="https://github.com/luevano/pyssg">pyssg</a>
-</span>
-
-<br>
-<span class="copyright">
-  Copyright <i class="far fa-copyright" alt="Copyright"></i> 2023 David Luévano Alvarado
-</span>
-{%endmacro%}
\ No newline at end of file
diff --git a/pyssg.xyz/plt/body_header.html b/pyssg.xyz/plt/body_header.html
deleted file mode 100644
index 9b38511..0000000
--- a/pyssg.xyz/plt/body_header.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{%macro print(config)%}
-<nav>
-  <ul>
-    <li>
-      <a href="{{config['url']['main']}}"><i class="fas fa-home" alt="Home"></i><span>Home</span></a>
-    </li>
-
-    <li><i class="fab fa-git" alt="Git"></i><span>Git</span>
-      <ul>
-        <li><a href="https://git.luevano.xyz/" target="_blank"><i class="fab fa-git-alt" alt="Git-alt"></i></a></li>
-
-        <li><a href="https://github.com/luevano" target="_blank"><i class="fab fa-github" alt="Github"></i></a></li>
-
-        <li><a href="https://gitlab.com/dluevano" target="_blank"><i class="fab fa-gitlab" alt="Gitlab"></i></a></li>
-      </ul>
-    </li>
-  </ul>
-</nav>
-
-<button class="theme-switcher" onclick="toggleTheme()"><i class="fas fa-moon"></i><i class="fas fa-sun"></i></button>
-{%endmacro%}
\ No newline at end of file
diff --git a/pyssg.xyz/plt/root_index.html b/pyssg.xyz/plt/root_index.html
deleted file mode 100644
index 73cd8a0..0000000
--- a/pyssg.xyz/plt/root_index.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{%extends "base.html"%}
-{%block html_lang%}{{config['lang']}}{%endblock html_lang%}
-{%block head_title%}
-<title>{{config['title']}}</title>
-{%endblock head_title%}
-{%block head_description%}
-<meta name="description" content="{{config['description']}}"/>
-{%endblock head_description%}
-{%block head_rss%}
-<link rel="alternate" type="application/rss+xml" href="{{config['url']['main']}}/rss.xml" title="{{config['title']}} RSS">
-{%endblock head_rss%}
-{%block head_og%}
-  <meta property="og:title" content="{{config['title']}}"/>
-  <meta property="og:type" content="article"/>
-  <meta property="og:url" content="{{config['url']['main']}}/index.html"/>
-  <meta property="og:image" content="{{config['url']['static']}}{{config['url']['default_image']}}"/>
-  <meta property="og:description" content="{{config['description']}}"/>
-  <meta property="og:locale" content="{{config['lang']}}"/>
-  <meta property="og:site_name" content="{{config['title']}}"/>
-{%endblock head_og%}
-{%block body_content%}
-  <h1>{{config['info']['title']}}</h1>
-
-  <p>
-    Welcome to the official pyssg website. This is as of now serving as a testing ground when I'm making changes to it.
-  </p>
-
-  <p>
-    Get the RSS feed: <a target="_blank" href="{{config['url']['main']}}/rss.xml">{{config['url']['main']}}/rss.xml</a>
-  </p>
-{%endblock body_content%}
diff --git a/pyssg.xyz/plt/root_page.html b/pyssg.xyz/plt/root_page.html
new file mode 100644
index 0000000..7d04d98
--- /dev/null
+++ b/pyssg.xyz/plt/root_page.html
@@ -0,0 +1,50 @@
+{%extends "base.html"%}
+
+{%block html_lang%}
+{{config['lang']}}
+{%endblock html_lang%}
+
+{%block head_title%}
+<title>{{config['title']}}</title>
+{%endblock head_title%}
+
+{%block head_description%}
+<meta name="description" content="{{config['description']}}"/>
+{%endblock head_description%}
+
+{%block head_rss%}
+{%endblock head_rss%}
+
+{%block head_extra%}
+{%endblock head_extra%}
+
+{%block head_og%}
+  <meta property="og:title" content="{{config['title']}}"/>
+  <meta property="og:type" content="article"/>
+  <meta property="og:url" content="{{config['url']['main']}}/{{page.name}}"/>
+  <meta property="og:image" content="{{config['url']['static']}}/{{config['url']['default_image']}}"/>
+  <meta property="og:description" content="{{config['description']}}"/>
+  <meta property="og:locale" content="{{config['lang']}}"/>
+  <meta property="og:site_name" content="{{config['title']}}"/>
+{%endblock head_og%}
+
+{%block body_header%}
+{%import 'body/header.html' as body_header%}
+{{body_header.print(config)}}
+{%endblock body_header%}
+
+{%block body_content%}
+  <h1>{{page.title}}</h1>
+
+  {{page.content}}
+{%endblock body_content%}
+
+{%block body_footer%}
+{%import 'body/footer.html' as body_footer%}
+{{body_footer.contact(config)}}
+{{body_footer.donate(config)}}
+<br>
+{{body_footer.created_with()}}
+<br>
+{{body_footer.copyright()}}
+{%endblock body_footer%}
\ No newline at end of file
-- 
cgit v1.2.3-70-g09d2