diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2025-10-25 21:17:12 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2025-10-25 21:17:12 +0800 |
| commit | fad35e21d2bf8a2e1398e83887bb779a28e60ee6 (patch) | |
| tree | 9ae40c19eb526b96e57c7545c7a8fb0cfa1581fe /index.html | |
| parent | 8cd867cd53794386cb9443bfc023fe97c5c5fa47 (diff) | |
| download | www-fad35e21d2bf8a2e1398e83887bb779a28e60ee6.tar.gz | |
Front page.
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 50 |
1 files changed, 33 insertions, 17 deletions
@@ -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> |
