arcanis.me/ru/projects/index.html

31 lines
969 B
HTML

---
category: ru
hastr: true
layout: default
title: Проекты
comment: false
share: true
back: 1
---
<body>
<div class="wrapper">
<header>
<h1>{{ page.title }}</h1>
<p class="view">Список некоторых из моих проектов</p>
</header>
<section>
{% for project in site.categories.projects %}
{% if project.categories contains 'ru' %}
<h2><a href="#{{ project.short }}" class="anchor" id="{{ project.short }}"><span class="octicon octicon-link"></span></a>{{ project.title }}</h2>
<p>{{ project.excerpt }}</p>
<ul>
<li><a href="{{ project.url }}" title="Домашняя страница">Домашняя страница</a></li>
<li><a href="//github.com/arcan1s/{{ project.short }}" title="GitHub">Репозиторий на GitHub</a></li>
{% for link in project.links %}
<li>{{ link }}</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}