69 lines
1.8 KiB
HTML
69 lines
1.8 KiB
HTML
{% include "header.html" %}
|
||
|
||
<!-- Page Header -->
|
||
<header class="masthead" style="background-image: url('https://images.unsplash.com/photo-1470092306007-055b6797ca72?ixlib=rb-1.2.1&auto=format&fit=crop&w=668&q=80')">
|
||
<div class="overlay"></div>
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-lg-8 col-md-10 mx-auto">
|
||
<div class="site-heading">
|
||
<h1>Angela's Blog</h1>
|
||
<span class="subheading">A collection of Angela's random musings.</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
|
||
<!-- Main Content -->
|
||
<div class="container">
|
||
|
||
<div class="row">
|
||
<div class="col-lg-8 col-md-10 mx-auto">
|
||
{% for post in all_posts %}
|
||
<div class="post-preview">
|
||
<a href="{{ url_for('show_post', index=post.id) }}">
|
||
<h2 class="post-title">
|
||
{{post.title}}
|
||
</h2>
|
||
<h3 class="post-subtitle">
|
||
{{post.subtitle}}
|
||
</h3>
|
||
</a>
|
||
<p class="post-meta">Posted by
|
||
<a href="#">{{post.author}}</a>
|
||
on {{post.date}}</p>
|
||
</div>
|
||
|
||
|
||
<div class="row">
|
||
<div class="col-lg-8 col-md-10 mx-auto">
|
||
{% for post in all_posts %}
|
||
<div class="post-preview">
|
||
<a href="#">
|
||
<h2 class="post-title">
|
||
{{post.title}}
|
||
</h2>
|
||
<h3 class="post-subtitle">
|
||
{{post.subtitle}}
|
||
</h3>
|
||
</a>
|
||
<p class="post-meta">Posted by
|
||
<a href="#">{{post.author}}</a>
|
||
on {{post.date}}</p>
|
||
</div>
|
||
<hr>
|
||
{% endfor %}
|
||
|
||
|
||
<!-- Pager -->
|
||
<div class="clearfix">
|
||
<a class="btn btn-primary float-right" href="#">Older Posts →</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<hr>
|
||
|
||
{% include "footer.html" %} |