You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
910 B
27 lines
910 B
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags wagtailimages_tags %}
|
|
|
|
{% block body_class %}template-blogindexpage{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 style="text-align:center">{{ page.title }}</h1>
|
|
|
|
<div class="intro">{{ page.intro|richtext }}</div>
|
|
|
|
<div class="d-flex justify-content-around">
|
|
{% for post in page.get_children %}
|
|
<div class="card blog" style="width: 18rem;">
|
|
{% image post.specific.image width-250 class="card-img-top" %}
|
|
<div class="card-body">
|
|
<h5 class="card-title">{{ post.specific.title }}</h5>
|
|
<p class="card-text">{{ post.specific.intro }}</p>
|
|
</div>
|
|
<div class="card-body">
|
|
<a href="#" class="card-link">Přejít na článek</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock %}
|