mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 23:37:19 +00:00
2014-01-15
- removed custom tags + added normal tags and related pages + moved blog/index to blog
This commit is contained in:
parent
da9ffc0a55
commit
daea4d012c
6
LICENSE
6
LICENSE
@ -36,6 +36,10 @@ Sharethis have own custom license too:
|
|||||||
http://www.sharethis.com/legal/publisher-terms-of-use
|
http://www.sharethis.com/legal/publisher-terms-of-use
|
||||||
|
|
||||||
|
|
||||||
[Liberation font](https://www.redhat.com/promo/fonts/) is licensed under The SIL Open Font License:
|
[Liberation font](https://www.redhat.com/promo/fonts/) is licensed under
|
||||||
|
The SIL Open Font License:
|
||||||
|
|
||||||
http://scripts.sil.org/OFL
|
http://scripts.sil.org/OFL
|
||||||
|
|
||||||
|
Special thanks to [Monztruo](http://monztruo.deviantart.com/), I borrowed
|
||||||
|
[his icon](http://monztruo.deviantart.com/art/Zalgo-Pacman-v1-194649946).
|
||||||
|
@ -10,9 +10,12 @@ layout: default
|
|||||||
<h1>{{ page.title }}</h1>
|
<h1>{{ page.title }}</h1>
|
||||||
<p align="justify">{{ page.date | date_to_string }}<br>
|
<p align="justify">{{ page.date | date_to_string }}<br>
|
||||||
<i>Last edit: {{ page.last | date_to_string }}</i></p>
|
<i>Last edit: {{ page.last | date_to_string }}</i></p>
|
||||||
<p align="justify">Tags: {% for tag in page.tags %}
|
<p align="justify">{{ Tags: page.tags }}</p>
|
||||||
<a href="https://www.google.ru/search?q={{ tag }}+site:arcan1s.github.io">{{ tag }}</a>
|
<p align="justify"><b>Related posts</b>:<br>
|
||||||
{% endfor %}</p>
|
{% for post in site.related_posts limit:3 %}
|
||||||
|
<i>{{ page.last | date_to_string }}</i> <a href="{{ post.url }}">{{ post.title }}</a><br>
|
||||||
|
{% endfor %}
|
||||||
|
</p>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
|
|
||||||
|
@ -2,10 +2,7 @@
|
|||||||
layout: paper
|
layout: paper
|
||||||
date: 14 January 2014
|
date: 14 January 2014
|
||||||
last: 14 January 2014
|
last: 14 January 2014
|
||||||
tags:
|
tags: zshrc, configuration, linux
|
||||||
- zshrc
|
|
||||||
- configuration
|
|
||||||
- linux
|
|
||||||
title: About zshrc
|
title: About zshrc
|
||||||
description: It is first paper in my blog (I think I need something here for tests =)). There are many similar articles, and I'll not be an exception. I just want to show my <code>.zshrc</code> and explain what it does and why it is needed. Also any comments or additions are welcome. It is a translated paper from Russian (<a href="http://archlinux.org.ru/forum/topic/12752/">original</a>).
|
description: It is first paper in my blog (I think I need something here for tests =)). There are many similar articles, and I'll not be an exception. I just want to show my <code>.zshrc</code> and explain what it does and why it is needed. Also any comments or additions are welcome. It is a translated paper from Russian (<a href="http://archlinux.org.ru/forum/topic/12752/">original</a>).
|
||||||
commentIssueId: 5
|
commentIssueId: 5
|
||||||
|
@ -22,11 +22,9 @@ posts:
|
|||||||
|
|
||||||
{% for post in site.posts %}
|
{% 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>
|
<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"><i>{{ post.date | date_to_string}}</i></p>
|
||||||
<p align="justify">{{ post.description }}</p>
|
<p align="justify">{{ post.description }}</p>
|
||||||
<p align="justify">Tags: {% for tag in post.tags %}
|
<p align="justify"><b>Tags</b>: {{ post.tags }}</p>
|
||||||
<a href="https://www.google.ru/search?q={{ tag }}+site:arcan1s.github.io">{{ tag }}</a>
|
|
||||||
{% endfor %}</p>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<script type="text/javascript" src="http://datejs.googlecode.com/svn/trunk/build/date-en-US.js"></script>
|
<script type="text/javascript" src="http://datejs.googlecode.com/svn/trunk/build/date-en-US.js"></script>
|
Loading…
Reference in New Issue
Block a user