summaryrefslogtreecommitdiff
path: root/_includes/sidebar.html
blob: 004a349605d5a126c13052328d1864da8622e1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="sidebar well">
  <h1>{% t global.what_else_to_read %}</h1>
  <ul>
    <li><a href="https://yosoyira.medium.com/">Iranzo_Arte</a></li>
    <li><a href="https://kimimithegameeatingshemonster.com/">Kimimi the game-eating she monster</a></li>
    <li><a href="https://ephemeralenigmascom.wordpress.com/">Ephemeral Enigmas</a></li>
    <li><a href="https://www.badgamehalloffame.com/">Bad Game Hall of Fame</a></li>
  </ul>
</div>

<div class="sidebar well">
    <h1>{% t global.recent_posts %} </h1>
    <ul>
        {% for post in site.posts limit:5 %}
          <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
    </ul>
</div>

<div class="sidebar well">
{% include links-list.html %}
</div>