mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 15:27:17 +00:00
First, it supports only one page path, so /ru/blog and /blog will have different view. But there is a plugin jekyll-paginator, but it seems doesn't work and github doesn't support an additional plugins. Second, paginator doesn't work correctly with pages with different tags (e.g. en and ru).
21 lines
652 B
HTML
21 lines
652 B
HTML
---
|
|
category: ru
|
|
layout: default
|
|
title: Архив материалов
|
|
comment: false
|
|
share: false
|
|
back: 2
|
|
---
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
<section>
|
|
|
|
{% for post in site.categories.ru%}
|
|
<p align="justify"><i>{{ post.date | date_to_string}}</i> » <a name="{{ post.short }}" class="anchor" href="#{{ post.short }}"><span class="octicon octicon-link"></span></a><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.tags }})</p>
|
|
{% endfor %}
|
|
|
|
<script type="text/javascript" src="http://datejs.googlecode.com/svn/trunk/build/date-en-US.js"></script>
|