mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 15:27:17 +00:00
33 lines
965 B
HTML
33 lines
965 B
HTML
---
|
|
layout: default
|
|
title: Blog
|
|
comment: false
|
|
share: false
|
|
back: 1
|
|
posts:
|
|
- title: About zshrc
|
|
date: 14 January 2014
|
|
last: 14 January 2014
|
|
tags:
|
|
- zshrc
|
|
- configuration
|
|
- linux
|
|
---
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<h1>My blog</h1>
|
|
</header>
|
|
<section>
|
|
|
|
{% for post in site.posts %}
|
|
<h1><a name="{{ post.title }}" class="anchor" href="#{{ post.title }}"><span class="octicon octicon-link"></span></a><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
|
<p align="justify">{{ post.date | date_to_string}}</p>
|
|
<p align="justify">{{ post.description }}</p>
|
|
<p align="justify">Tags: {% for tag in post.tags %}
|
|
<a href="https://www.google.ru/search?q={{ tag }}+site:arcan1s.github.io">{{ tag }}</a>
|
|
{% endfor %}</p>
|
|
{% endfor %}
|
|
|
|
<script type="text/javascript" src="http://datejs.googlecode.com/svn/trunk/build/date-en-US.js"></script>
|