aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 6af40eff76e4a3659a6302e00533c58080c66115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% block page %}
  <div class="landing-page-container">
    <h1>Yaroslav de la Peña Smirnov</h1>
    <div class="links-container">
      <a href="/weblog">Weblog</a>
      <a href="/food">Recipe book</a>
    </div>
    <div class="links-container">
      <a href="https://github.com/Yaroslav-95" title="GitHub">
        <span class="icon"><img src="/svg/icons/github.svg"/></span>
      </a>
      <a href="https://git.yaroslavps.com/" title="Git server">
        <span class="icon"><img src="/svg/icons/git.svg"/></span>
      </a>
    </div>
    <p>Welcome, my name is Yaroslav de la Peña Smirnov. I keep this site to
    sometimes write about what I do or think on my weblog, or to remind myself
    of how to do certain things. You can take a look around, maybe you'll find
    something interesting or useful.</p>
    <h2>Getting in contact</h2>
    <p>If you want to contact me, you can do so by email at:
      <a href="mailto:yps@yaroslavps.com">yps@yaroslavps.com</a>
    </p>
    <p>Public PGP key: <a href="https://www.yaroslavps.com/files/yaroslavpub.gpg">BD900E5D624046DC</a></p>
    <h2>RSS feeds</h2>
    <p>If you are interested in following what I may publish here (however often it
    may be), you can add these RSS/Atom urls to your favorite RSS reader:</p>
    <pre class="rss-links-list">
    https://www.yaroslavps.com/weblog/feed.xml
    https://www.yaroslavps.com/food/feed.xml
    </pre>
  </div>
{% endblock %}