diff options
-rw-r--r-- | config | 6 | ||||
-rw-r--r-- | templates/core/index | 5 | ||||
-rw-r--r-- | templates/core/page | 4 | ||||
-rw-r--r-- | templates/footer | 4 | ||||
-rw-r--r-- | templates/header | 6 |
5 files changed, 14 insertions, 11 deletions
@@ -12,7 +12,7 @@ variable d_output {/home/aleksei/jeaves.xyz/www/} variable replacement \ [dict create \ - {<!--domain-->} {http://localhost:8000} \ - {<!--css-->} {/style.css} \ - {<!--favicon-->} {/favicon.ico} \ + {<!--domain-->} {http://jeaves.xyz} \ + {<!--css-->} {style.css} \ + {<!--favicon-->} {favicon.ico} \ ]; ## Do not delete this line! diff --git a/templates/core/index b/templates/core/index index 26aef90..0781442 100644 --- a/templates/core/index +++ b/templates/core/index @@ -7,8 +7,9 @@ </head> <body> <!--HEADER--> - <!--CORE/CONTENT--> + <div class='content'> + <!--CORE/CONTENT--> + </div> <!--FOOTER--> </body> - </html> diff --git a/templates/core/page b/templates/core/page index 896f372..09299f7 100644 --- a/templates/core/page +++ b/templates/core/page @@ -7,7 +7,9 @@ </head> <body> <!--HEADER--> - <!--CORE/CONTENT--> + <div class='content'> + <!--CORE/CONTENT--> + </div> <!--FOOTER--> </body> </html> diff --git a/templates/footer b/templates/footer index 4a8bf4d..89f7325 100644 --- a/templates/footer +++ b/templates/footer @@ -1 +1,3 @@ -<footer></footer>
\ No newline at end of file +<footer> +Made with <a href='http://git.jeaves.xyz/ds-static/'>ds-static</a>.   <a href="mailto:alekseijeaves@protonmail.com">alekseijeaves@protonmail.com</a> +</footer>
\ No newline at end of file diff --git a/templates/header b/templates/header index 48b81dc..7520bc6 100644 --- a/templates/header +++ b/templates/header @@ -2,7 +2,5 @@ <a href="/"> Aleksei John Eaves </a> <a href="/blog/personal/">Personal Blog</a> <a href="/blog/technical/">Technical Blog</a> - <a href="http://git.jeaves.xyz/">cgit</a> - <a href="mailto:alekseijeaves@protonmail.com">E-mail Address</a> -</header> -<hr> + <a href="http://git.jeaves.xyz/">Git</a> +</header>
\ No newline at end of file |