diff options
Diffstat (limited to 'layout')
| -rw-r--r-- | layout/feed.xml | 2 | ||||
| -rw-r--r-- | layout/item.html | 4 | ||||
| -rw-r--r-- | layout/list.html | 4 | ||||
| -rw-r--r-- | layout/page.html | 28 | ||||
| -rw-r--r-- | layout/post.html | 2 |
5 files changed, 13 insertions, 27 deletions
diff --git a/layout/feed.xml b/layout/feed.xml index 3c9e4b0..89cf8c9 100644 --- a/layout/feed.xml +++ b/layout/feed.xml @@ -4,7 +4,7 @@ <channel> <title>{{ title }}</title> <link>{{ site_url }}/</link> -<description>Real-time strategy game set in ancient history</description> +<description>Lorenzo Torres' personal website</description> {{ content }} diff --git a/layout/item.html b/layout/item.html index 0a1b712..4fb8500 100644 --- a/layout/item.html +++ b/layout/item.html @@ -1,10 +1,10 @@ <article> <h2><a href="{{ base_path }}/{{ blog }}/{{ slug }}/">{{ title }}</a></h2> -<p class="meta">Published on {{ date }} by <b>{{ author }}</b></p> +<p class="meta">published on {{ date }}</p> <p class="summary"> {{ summary }} <a class="more" href="{{ base_path }}/{{ blog }}/{{ slug }}/">...</a> </p> <div> -<a class="more" href="{{ base_path }}/{{ blog }}/{{ slug }}/">Read More</a> +<a class="more" href="{{ base_path }}/{{ blog }}/{{ slug }}/">read more</a> </div> </article> diff --git a/layout/list.html b/layout/list.html index 79a6aab..552fb35 100644 --- a/layout/list.html +++ b/layout/list.html @@ -1,5 +1,5 @@ -<h1>{{ title }}</h1> +<h1>Blog</h1> {{ content }} <section> -<a class="rss" href="{{ base_path }}/{{ blog }}/rss.xml">RSS</a> +<a class="rss" href="{{ base_path }}/{{ blog }}/rss.xml">rss</a> </section> diff --git a/layout/page.html b/layout/page.html index 4cbc171..f300dbe 100644 --- a/layout/page.html +++ b/layout/page.html @@ -11,32 +11,18 @@ <nav> <section> - <span class="home"> - <a href="{{ base_path }}/">Home</a> - </span> - <span class="links"> - <a href="{{ base_path }}/blog/">Blog</a> - <a href="{{ base_path }}/news/">News</a> - <a href="{{ base_path }}/community/">Community</a> - <a href="{{ base_path }}/docs/">Documentation</a> - <a href="{{ base_path }}/development/">Development</a> + <span id="menu"> + <a href="{{ base_path }}/">home</a> + <a href="{{ base_path }}/blog/">blog</a> + <a href="{{ base_path }}/projects/">projects</a> + <a href="{{ base_path }}/faq/">faq</a> </span> </section> </nav> -<main> +<div class="content"> {{ content }} -</main> - -<footer> -<section> -<p>© {{ current_year }} Sideros project</p> -<p> - <a href="https://git.sideros.org/">Project Git</a> - <a href="https://git.sideros.org/website">Source code</a> -</p> -</section> -</footer> +</div> </body> </html> diff --git a/layout/post.html b/layout/post.html index f0a42be..bd5beb3 100644 --- a/layout/post.html +++ b/layout/post.html @@ -1,5 +1,5 @@ <article> <h1><a href="{{ base_path }}/{{ blog }}/{{ slug }}/">{{ title }}</a></h1> -<p class="meta">Published on {{ date }} by <b>{{ author }}</b></p> +<p class="meta">published on {{ date }}</p> {{ content }} </article> |
