+ added redirection from the main page

* translations
This commit is contained in:
arcan1s 2014-01-16 22:36:13 +04:00
parent 6db23cb986
commit 4aded9cc11
13 changed files with 77 additions and 60 deletions

View File

@ -38,7 +38,7 @@
<img src="/resources/pinkiepie.png" alt="pinkiepie"> <img src="/resources/pinkiepie.png" alt="pinkiepie">
<p align="justify">I'm Pinkie Pie. You are seeing me because you want a page that I could not find. I'm sorry. Seriously. I'll try to work better. But now I may suggest you to return to the <a href="/">Homepage</a> or <a href="javascript:history.back()">back</a></p> <p align="justify">I'm Pinkie Pie. You are seeing me because you want a page that I could not find. I'm sorry. Seriously. I'll try to work better. But now I may suggest you to return to the <a href="/">Homepage</a> or <a href="javascript:history.back()">back</a>.</p>
</section> </section>
<footer> <footer>

View File

@ -8,7 +8,7 @@ title: About me
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>About me</h1> <h1>{{ page.title }}</h1>
<p class="view"><a href="https://github.com/arcan1s">GitHub Profile</a><br> <p class="view"><a href="https://github.com/arcan1s">GitHub Profile</a><br>
<a href="https://www.archlinux.org/trustedusers/#arcanis">TU Profile on <code>archlinux.org</code></a><br> <a href="https://www.archlinux.org/trustedusers/#arcanis">TU Profile on <code>archlinux.org</code></a><br>
@ -17,9 +17,9 @@ title: About me
<h2>Contacts</h2> <h2>Contacts</h2>
<p class="view">Alias: arcanis/arcan1s<br> <p class="view">Alias: arcanis/arcan1s<br>
IRC: <a href="irc://irc.freenode.net/arcan1s">arcan1s</a> <br> IRC: <a href="irc://irc.freenode.net/arcan1s">arcan1s</a><br>
ICQ: 407-398-235<br> ICQ: 407-398-235<br>
Jabber: arcanis (at) jabber (dot) org<br> Jabber: arcanis (at) jabber (dot) ru<br>
E-mail: <a href="mailto:darkarcanis@mail.ru">darkarcanis (at) mail (dot) ru</a></p> E-mail: <a href="mailto:darkarcanis@mail.ru">darkarcanis (at) mail (dot) ru</a></p>
</header> </header>

View File

@ -8,7 +8,7 @@ title: Authors
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>Authors</h1> <h1>{{ page.title }}</h1>
</header> </header>
<section> <section>

View File

@ -8,7 +8,7 @@ back: 1
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' blog</h1> <h1>{{ page.title }}</h1>
</header> </header>
<section> <section>

View File

@ -8,7 +8,7 @@ title: arcanis' homepage
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' homepage</h1> <h1>{{ page.title }}</h1>
<p class="view"><a href="/blog/">My blog</a><br> <p class="view"><a href="/blog/">My blog</a><br>
<a href="/projects/">My projects</a></p> <a href="/projects/">My projects</a></p>
@ -16,9 +16,19 @@ title: arcanis' homepage
</header> </header>
<section> <section>
<!-- redirection to russian page -->
<script>
var languageinfo=navigator.language? navigator.language : navigator.userLanguage
function redirectpage(dest) {
if (window.location.replace) window.location.replace(dest)
else window.location=dest
}
if (languageinfo.substr(0,2) == "ru") redirectpage("/ru/")
</script>
<!-- redirection to russian page -->
<h3><a name="welcome" class="anchor" href="#welcome"><span class="octicon octicon-link"></span></a>Welcome</h3> <h3><a name="welcome" class="anchor" href="#welcome"><span class="octicon octicon-link"></span></a>Welcome</h3>
<p align="justify">Welcome to my homepage, <code>`echo $USERNAME`</code>. About me you may read on <a href="/about">the link</a>. I'm sorry I don't know html/php/etc (but I know GoogleFOO! At least, I think so), therefore this page may not look very pretty. But I tried (or may be not). In the blog I will write some papers about programming, living in Archlinux system and may be package maintaining. Also I will create pages for some of <a href="https://github.com/arcan1s">my projects</a>. Unfortunately, sometimes I'm too lazy to write in English, thus some of my papers will be in Russian.</p> <p align="justify">Welcome to my homepage, <code>`echo $USERNAME`</code>. About me you may read on <a href="/about">the link</a>. I'm sorry I don't know html/php/ruby/etc (but I know GoogleFOO! At least, I think so), therefore this page may not look very pretty. But I tried (or may be not). In the blog I will write some papers about programming, living in Archlinux system and may be package maintaining. Also I will create pages for some of <a href="https://github.com/arcan1s">my projects</a>.</p>
<h3><a name="contact" class="anchor" href="#contact"><span class="octicon octicon-link"></span></a>Contact me</h3> <h3><a name="contact" class="anchor" href="#contact"><span class="octicon octicon-link"></span></a>Contact me</h3>
<p align="justify">If you have a question or something else you may <a href="/about">contact me</a>. If you want to suggest a pull request or to create a bug report for these pages (or may be for some other projects) feel free to visit <a href="https://github.com/arcan1s">my Github profile</a> and do it.</p> <p align="justify">If you have a question or something else you may <a href="/about">contact me</a>. If you want to suggest a pull request or to create a bug report for these pages (or may be for some other projects) feel free to visit <a href="https://github.com/arcan1s">my Github profile</a> and do it.</p>

View File

@ -89,7 +89,7 @@ groups:
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' projects</h1> <h1>{{ page.title }}</h1>
<p class="view">The list of some of my projects</p> <p class="view">The list of some of my projects</p>
<p class="view"> <p class="view">
{% for group in page.groups %} {% for group in page.groups %}

View File

@ -28,7 +28,7 @@
<img src="/resources/pinkiepie.png" alt="pinkiepie"> <img src="/resources/pinkiepie.png" alt="pinkiepie">
<p align="justify">Я Пинки Пай. Ты видишь меня, потому что ты хочешь страницу, которую я не смогла найти. Мне жаль, нет, честно. Я постараюсь работать лучше. А сейчас я могу предложить тебе вернуться на <a href="/ru">домашнюю страницу</a> или <a href="javascript:history.back()">назад</a></p> <p align="justify">Я Пинки Пай. Ты видишь меня, потому что ты хочешь страницу, которую я не смогла найти. Мне очень жаль. Нет, честно-честно. В будущем я постараюсь работать лучше, а сейчас могу предложить вернуться на <a href="/ru">домашнюю страницу</a> или <a href="javascript:history.back()">назад</a>.</p>
</section> </section>
<footer> <footer>

View File

@ -4,39 +4,39 @@ layout: default
comment: false comment: false
share: true share: true
back: 1 back: 1
title: About me title: Обо мне
--- ---
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>About me</h1> <h1>{{ page.title }}</h1>
<p class="view"><a href="https://github.com/arcan1s">GitHub Profile</a><br> <p class="view">Профиль на <a href="https://github.com/arcan1s">GitHub</a><br>
<a href="https://www.archlinux.org/trustedusers/#arcanis">TU Profile on <code>archlinux.org</code></a><br> <a href="https://www.archlinux.org/trustedusers/#arcanis">Профиль TU на <code>archlinux.org</code></a><br>
<a href="http://istina.msu.ru/profile/arcanis">Some of my publications</a><br> <a href="http://istina.msu.ru/profile/arcanis">Некоторые из моих публикаций</a><br>
PGP signature: <a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&fingerprint=on&exact=on&search=0x779CD2942629B7FA04AB8F172E89012331361F01">0x31361F01</a></p> PGP: <a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&fingerprint=on&exact=on&search=0x779CD2942629B7FA04AB8F172E89012331361F01">0x31361F01</a></p>
<h2>Contacts</h2> <h2>Контакты</h2>
<p class="view">Alias: arcanis/arcan1s<br> <p class="view">Алиас: arcanis/arcan1s<br>
IRC: <a href="irc://irc.freenode.net/arcan1s">arcan1s</a> <br> IRC: <a href="irc://irc.freenode.net/arcan1s">arcan1s</a><br>
ICQ: 407-398-235<br> ICQ: 407-398-235<br>
Jabber: arcanis (at) jabber (dot) org<br> Jabber: arcanis (at) jabber (dot) ru<br>
E-mail: <a href="mailto:darkarcanis@mail.ru">darkarcanis (at) mail (dot) ru</a></p> E-mail: <a href="mailto:darkarcanis@mail.ru">darkarcanis (at) mail (dot) ru</a></p>
</header> </header>
<section> <section>
<p align="justify">My name is Evgeniy Alekseev and I'm from Siberia (seriously, I was born in <a href="https://maps.google.com/maps?f=q&source=s_q&hl=ru&geocode=&q=russia,+Krasnoyarskiy+kray,+Sosnovoborsk&aq=&sll=56.133333,93.366667&sspn=0.100635,0.326843&vpsrc=6&g=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F,+Krasnoyarskiy+kray,+Sosnovoborsk&ie=UTF8&hq=&hnear=%D0%A1%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%BE%D0%B1%D0%BE%D1%80%D1%81%D0%BA,+%D0%B3%D0%BE%D1%80%D0%BE%D0%B4+%D0%A1%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%BE%D0%B1%D0%BE%D1%80%D1%81%D0%BA,+%D0%9A%D1%80%D0%B0%D1%81%D0%BD%D0%BE%D1%8F%D1%80%D1%81%D0%BA%D0%B8%D0%B9+%D0%BA%D1%80%D0%B0%D0%B9,+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&ll=56.316537,95.712891&spn=25.891057,83.671875&t=m&z=4&iwloc=A">Siberia</a>). In the global Internet I have usually nickname <code>arcan1s</code>, but in the Russian segment it is usually <code>arcanis</code>. I'm a graduate of <a href="http://www.chem.msu.ru/">the Department of Chemistry</a>, Moscow State University and now I'm a PhD student and working in my University. My speciality is a theoretical chemistry (like molecular physics and some of quantum chemistry).</p> <p align="justify">Меня зовут Евгений Алексеев, <a href="http://lurkmore.to/%D0%9C%D0%BD%D0%B5_20_%D0%B8_%D1%8F_%D0%B1%D0%BE%D1%80%D0%BE%D0%B4%D0%B0%D1%82">мне 20 и я бородат</a>. Обычно, мой никнейм в Интернете <code>arcan1s</code>, хотя в русскоязычном сегменте, обычно, <code>arcanis</code>. Я выпускник <a href="http://www.chem.msu.ru/">Химического факультета</a> Московоского государственного университета. Сейчас я аспирант и работаю в моем Университете. Моя специальность - теоретическая химия (типа молекулярной физики и немного квантовой химии).</p>
<p align="justify">At leisure I write small applications on C, C++ and Python (and some application scripts on Shell). In order not to seem like a bearded nerd sometimes I listen music and read <a href="http://en.wikipedia.org/wiki/Robert_Jordan">Robert Jordan's</a> or <a href="http://en.wikipedia.org/wiki/George_R.R._Martin">George R.R. Martin's</a> books (or other similar). (But my friends tell me that I still look like a bearded nerd.) Music that I usually listen may be found on <a href="smb://89.249.170.38/Music/">my home computer</a>. I just want to notice that I am <b>NOT A FREELANCER</b>. But you can suggest me some project (<b>not money</b>) and if I'll like it I'll do it.</p> <p align="justify">На досуге я пишу небольшие приложения на C, C++ and Python (и скрипты на Shell). Чтобы не выглядеть, как бородатый нерд, иногда я слушаю музыку и читаю книги <a href="http://ru.wikipedia.org/wiki/%D0%A0%D0%BE%D0%B1%D0%B5%D1%80%D1%82_%D0%94%D0%B6%D0%BE%D1%80%D0%B4%D0%B0%D0%BD">Роберта Джордана</a> или <a href="http://ru.wikipedia.org/wiki/%D0%9C%D0%B0%D1%80%D1%82%D0%B8%D0%BD,_%D0%94%D0%B6%D0%BE%D1%80%D0%B4%D0%B6_%D0%A0%D1%8D%D0%B9%D0%BC%D0%BE%D0%BD%D0%B4_%D0%A0%D0%B8%D1%87%D0%B0%D1%80%D0%B4">Джорджа Мартина</a> (и другие подобные). (Хотя,мои друзья все равно говорят мне, что я выгляжу, как бородатый нерд.) Музыка, которую я обычно слушаю, может быть найдена на <a href="smb://89.249.170.38/Music/">моем домашнем компьютере</a>. И да, я хочу заметить, что я <b>НЕ ФРИЛАНСЕР</b>. Но Вы можете предложить мне проект (<b>не деньги</b>) и, если он мне понравится, я возьмусь за него.</p>
<p align="justify">Also I'm an <a href="https://www.archlinux.org/">Archlinux</a> user (maybe that's why I look like a bearded nerd). And in October 2013 I became an Archlinux Trusted User:</p> <p align="justify">Также я являюсь пользователем <a href="https://www.archlinux.org/">Archlinux</a>. В октябре 2013 я стал Доверенным пользователем Archlinux:</p>
<blockquote cite="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines/"> <blockquote cite="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">
The Trusted User (TU) is a member of the community charged with keeping the AUR in working order. He/she maintains popular packages (communicating with and sending patches upstream as needed), and votes in administrative matters. A TU is elected from active community members by current TUs in a democratic process. TUs are the only members who have a final say in the direction of the AUR.</blockquote> The Trusted User (TU) is a member of the community charged with keeping the AUR in working order. He/she maintains popular packages (communicating with and sending patches upstream as needed), and votes in administrative matters. A TU is elected from active community members by current TUs in a democratic process. TUs are the only members who have a final say in the direction of the AUR.</blockquote>
<p align="right">&copy; <a href="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines/">ArchWiki</a></p> <p align="right">&copy; <a href="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">ArchWiki</a></p>
<p align="justify">All contact information can be found on the left. Feel free to contact me with any questions. Oh, wait! If you will write me to ICQ or jabber you must correctly answer antispam bot's question first. The question is:</p> <p align="justify">Вся контактная информация может быть найдена слева. Не стесняйтесь связываться со мной по любому вопросу (если что - пошлю). Ах да, чуть не забыл. Если Вы будете писать мне через ICQ или Jabber, Вы должны корректно ответить на вопрос антиспам бота. Вопрос:</p>
<pre><code>int i = 1; <pre><code>int i = 1;
i = ++i + ++i; i = ++i + ++i;
return i;</code></pre> return i;</code></pre>
<p align="justify">And the correct answer is <code>5</code> (or <code>6</code>, as you wish).</p> <p align="justify">Правильный ответ <code>5</code> (или <code>6</code>, как больше нравится).</p>

View File

@ -4,34 +4,36 @@ layout: default
comment: false comment: false
share: false share: false
back: 2 back: 2
title: Authors title: Авторы
--- ---
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>Authors</h1> <h1>{{ page.title }}</h1>
</header> </header>
<section> <section>
<p align="justify">The code and content of this site is licensed under <a href="http://people.freebsd.org/~phk">Beerware</a> license:</p> <p align="justify">Код и контент данного сайта лицензирован под <a href="http://people.freebsd.org/~phk">Beerware</a>:</p>
<blockquote><p align="justify">"THE BEER-WARE LICENSE" (Revision 42):<br> <blockquote><p align="justify">"THE BEER-WARE LICENSE" (Revision 42):<br>
Evgeniy Alekseev wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return</p></blockquote> Evgeniy Alekseev wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return</p></blockquote>
<p align="justify">(Ну, в общем, там про пиво говорится. Запомните, Вы должны мне пиво.)</p>
<p align="justify">The source theme was created by <a href="https://github.com/orderedlist/minimal">Steve Smith</a> and licensed under <a href="http://creativecommons.org/licenses/by/3.0">Creative Commons Attribution-ShareAlike 3.0 Unported</a> License.</p> <p align="justify">Исходная тема была создана <a href="https://github.com/orderedlist/minimal">Steve Smith</a> и лицензирована под <a href="http://creativecommons.org/licenses/by/3.0">Creative Commons Attribution-ShareAlike 3.0 Unported</a> License.</p>
<p align="justify">The comment block was created by <a href="https://github.com/izuzak/izuzak.github.com">Ivan Žužak</a> and licensed under <a href="http://opensource.org/licenses/MIT">MIT</a> License.</p> <p align="justify">Блок комментариев был создан <a href="https://github.com/izuzak/izuzak.github.com">Ivan Žužak</a> и лицензирован под <a href="http://opensource.org/licenses/MIT">MIT</a> License.</p>
<p align="justify">This site uses: <p align="justify">Данный сайт использует:
<ul> <ul>
<li><a href="http://jekyllrb.com/">Jekyll</a> that licensed under <a href="http://opensource.org/licenses/MIT">MIT</a> License</li> <li><a href="http://jekyllrb.com/">Jekyll</a>, который лицензирован под <a href="http://opensource.org/licenses/MIT">MIT</a> License</li>
</ul></p> </ul></p>
<p align="justify">Google Custom Search is licensed under own custom <a href="https://support.google.com/customsearch/answer/1714300">license</a>.</p> <p align="justify">Google Custom Search имеет собственную <a href="https://support.google.com/customsearch/answer/1714300">лицензию</a>.</p>
<p align="justify">Sharethis have own custom <a href="http://www.sharethis.com/legal/publisher-terms-of-use">license</a> too.</p> <p align="justify">Sharethis тоже имеет собственную <a href="http://www.sharethis.com/legal/publisher-terms-of-use">лицензию</a>.</p>
<p align="justify"><a href="https://www.redhat.com/promo/fonts/">Liberation font</a> is licensed under <a href="http://scripts.sil.org/OFL">The SIL Open Font</a> License.</p> <p align="justify"><a href="https://www.redhat.com/promo/fonts/">Liberation font</a> лицензирован под <a href="http://scripts.sil.org/OFL">The SIL Open Font</a> License.</p>
<p align="justify">Special thanks to <a href="http://monztruo.deviantart.com/">Monztruo</a>, I borrowed <a href="http://monztruo.deviantart.com/art/Zalgo-Pacman-v1-194649946">his icon</a>.</p> <p align="justify">Отдельное спасибо <a href="http://monztruo.deviantart.com/">Monztruo</a>, я позаимствовал у него <a href="http://monztruo.deviantart.com/art/Zalgo-Pacman-v1-194649946">иконку</a>.</p>
<p align="center">&copy; Evgeniy Alekseev, 2014</p> <p align="center">&copy; Evgeniy Alekseev, 2014</p>
<p align="right"><small>Хотя, кого в России е%$т лицензии?</small></p>

View File

@ -9,7 +9,7 @@ back: 1
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' blog</h1> <h1>{{ page.title }}</h1>
</header> </header>
<section> <section>

View File

@ -4,37 +4,27 @@ layout: default
comment: false comment: false
share: true share: true
back: 0 back: 0
title: arcanis' homepage title: arcanis
--- ---
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' homepage</h1> <h1>{{ page.title }}</h1>
<p class="view"><a href="/blog/">My blog</a><br> <p class="view"><a href="/ru/blog/">Мой блог</a><br>
<a href="/projects/">My projects</a></p> <a href="/ru/projects/">Мои проекты</a></p>
<p class="view"><a href="/about">About me</a></p> <p class="view"><a href="/ru/about">Обо мне</a></p>
</header> </header>
<section> <section>
<!-- redirection to russian page -->
<!-- <script>
var languageinfo=navigator.language? navigator.language : navigator.userLanguage
function redirectpage(dest) {
if (window.location.replace) window.location.replace(dest)
else window.location=dest
}
if (languageinfo.substr(0,2) == "ru") redirectpage("ru")
</script>-->
<!-- redirection to russian page -->
<h3><a name="welcome" class="anchor" href="#welcome"><span class="octicon octicon-link"></span></a>Welcome</h3> <h3><a name="welcome" class="anchor" href="#welcome"><span class="octicon octicon-link"></span></a>Добро пожаловать</h3>
<p align="justify">Welcome to my homepage, <code>`echo $USERNAME`</code>. About me you may read on <a href="/about">the link</a>. I'm sorry I don't know html/php/etc (but I know GoogleFOO! At least, I think so), therefore this page may not look very pretty. But I tried (or may be not). In the blog I will write some papers about programming, living in Archlinux system and may be package maintaining. Also I will create pages for some of <a href="https://github.com/arcan1s">my projects</a>. Unfortunately, sometimes I'm too lazy to write in English, thus some of my papers will be in Russian.</p> <p align="justify">Добро пожаловать на мою домашнюю страничку, <code>`echo $USERNAME`</code>. Обо мне вы можете прочитать по <a href="/ru/about">ссылке</a>. К сожалению, я не знаю html/php/ruby/прочее (но я знаю Google-фу! По крайней мере, я так думаю), поэтому эта страничка может выглядеть не очень красиво. Но я старался (ну или не совсем). В блоге я буду писать какие-нибудь статьи о науке, программировании, проживании в Archlinux и, может быть, о сопровождении пакетов. Также я создам странички для некоторых из <a href="https://github.com/arcan1s">моих проектов</a>.</p>
<h3><a name="contact" class="anchor" href="#contact"><span class="octicon octicon-link"></span></a>Contact me</h3> <h3><a name="contact" class="anchor" href="#contact"><span class="octicon octicon-link"></span></a>Контакты</h3>
<p align="justify">If you have a question or something else you may <a href="/about">contact me</a>. If you want to suggest a pull request or to create a bug report for these pages (or may be for some other projects) feel free to visit <a href="https://github.com/arcan1s">my Github profile</a> and do it.</p> <p align="justify">Если у Вас есть вопрос или что-нибудь еще, Вы можете <a href="/about">связаться со мной</a>. Если Вы хотите предложить пул-реквест или сообщить о баге для этих страничек, не стесняйтесь посетить <a href="https://github.com/arcan1s">мой профиль на GitHub</a> и сделать это.</p>
<h3><a name="search" class="anchor" href="#search"><span class="octicon octicon-link"></span></a>Site search</h3> <h3><a name="search" class="anchor" href="#search"><span class="octicon octicon-link"></span></a>Поиск по сайту</h3>
<script> <script>
(function() { (function() {
var cx = '000833618047197874644:rilf4jpvgyo'; var cx = '000833618047197874644:rilf4jpvgyo';

View File

@ -90,7 +90,7 @@ groups:
<body> <body>
<div class="wrapper"> <div class="wrapper">
<header> <header>
<h1>arcanis' projects</h1> <h1>{{ page.title }}</h1>
<p class="view">The list of some of my projects</p> <p class="view">The list of some of my projects</p>
<p class="view"> <p class="view">
{% for group in page.groups %} {% for group in page.groups %}

View File

@ -10,15 +10,27 @@ projects:
<url> <url>
<loc>http://arcan1s.github.io/</loc> <loc>http://arcan1s.github.io/</loc>
</url> </url>
<url>
<loc>http://arcan1s.github.io/ru/</loc>
</url>
<url> <url>
<loc>http://arcan1s.github.io/about/</loc> <loc>http://arcan1s.github.io/about/</loc>
</url> </url>
<url>
<loc>http://arcan1s.github.io/ru/about/</loc>
</url>
<url> <url>
<loc>http://arcan1s.github.io/authors/</loc> <loc>http://arcan1s.github.io/authors/</loc>
</url> </url>
<url>
<loc>http://arcan1s.github.io/ru/authors/</loc>
</url>
<url> <url>
<loc>http://arcan1s.github.io/blog/</loc> <loc>http://arcan1s.github.io/blog/</loc>
</url> </url>
<url>
<loc>http://arcan1s.github.io/ru/blog/</loc>
</url>
{% for post in site.posts %} {% for post in site.posts %}
<url> <url>
<loc>http://arcan1s.github.io{{ post.url }}</loc> <loc>http://arcan1s.github.io{{ post.url }}</loc>
@ -28,5 +40,8 @@ projects:
<url> <url>
<loc>http://arcan1s.github.io/projects/{{ proj }}/</loc> <loc>http://arcan1s.github.io/projects/{{ proj }}/</loc>
</url> </url>
<url>
<loc>http://arcan1s.github.io/projects/ru/{{ proj }}/</loc>
</url>
{% endfor %} {% endfor %}
</urlset> </urlset>