aboutsummaryrefslogtreecommitdiffstats
path: root/medio/templates/blogroll.html
blob: f355f2f7525f95f057f67ead6d0cbc28513c6ebc (plain) (blame)
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
{% extends "base.html" %}
{% block content %}
<div class="page-container archive-container">

    <div class="article-header-container">
        <div class="background-image-container">

            {# title with big background image #}
            <div class="background-image-small">
                <div class="title-container">
                    <h1>Blogroll</h1>
                </div>
            </div>
        </div>
    </div>

    <div class="entry-content" style="min-height:100vh">

      <ul>
        <li><a href="http://replace-this.io/">Replace This</a></li>
      </ul>

    </div>

</div>
{% endblock %}