summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html50
1 files changed, 33 insertions, 17 deletions
diff --git a/index.html b/index.html
index 1d73f3e..3dcf45f 100644
--- a/index.html
+++ b/index.html
@@ -3,25 +3,41 @@ layout: default
title: ASCIIMX
---
-<div class="articles">
- <table class="posts-table">
+<div class="container">
- {% assign posts = site.archive | sort: 'date' | reverse %}
- {% for post in posts %}
+ <img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line">
+ <p class="center author">{{ site.author }}</p>
+ <img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line flip">
- <tr>
- <td class="posts-td-link">
- <a href="{{ post.url }}">{{ post.title }}</a>
- </td>
- <td class="posts-td-time">
- <span class="post-meta">
- <time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
- </span>
- </td>
- </tr>
+ <h1 class="brand title center" id="type">{{ site.title | upcase }}</h1>
+ <h5 class="brand-description center">{{ site.description | markdownify }}</h5>
- {% endfor %}
+ <img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag flip">
+ <p class="right tagline">{{ site.tagline }}</p>
+ <img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag">
- </table>
-</div>
+ <br>
+ <br>
+ <div class="articles">
+ <table class="posts-table">
+
+ {% assign posts = site.archive | sort: 'date' | reverse %}
+ {% for post in posts %}
+
+ <tr>
+ <td class="posts-td-link">
+ <a href="{{ post.url }}">{{ post.title }}</a>
+ </td>
+ <td class="posts-td-time">
+ <span class="post-meta">
+ <time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
+ </span>
+ </td>
+ </tr>
+
+ {% endfor %}
+
+ </table>
+ </div>
+</div>