mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 07:17:17 +00:00
29 lines
781 B
HTML
29 lines
781 B
HTML
---
|
|
layout: default
|
|
title: arcanis' blog
|
|
comment: false
|
|
share: false
|
|
back: 1
|
|
hastr: true
|
|
---
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<h1>{{ page.title }}</h1>
|
|
<h3>
|
|
<a href="#archive" class="anchor" id="archive"><span class="octicon octicon-link"></span></a>
|
|
<a href="/blog/archive" title="Archive">Archive</a>
|
|
</h3>
|
|
</header>
|
|
<section>
|
|
|
|
{% for post in site.categories.en limit:10 %}
|
|
<h2>
|
|
<a href="#{{ post.short }}" class="anchor" id="{{ post.short }}"><span class="octicon octicon-link"></span></a>
|
|
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
|
|
</h2>
|
|
<p><i>{{ post.date | date_to_string }}</i></p>
|
|
<p>{{ post.excerpt }}</p>
|
|
<p><b>Tags</b>: {{ post.tags }}</p>
|
|
{% endfor %}
|