blob: 590c407953c32a3c6b87b1cf3264abb3e72521be (
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
|
{% extends "base_weblog.html" %}
{% block content %}
{% comment %}
{# This is not implemented in backend yet #}
<form action="#" class="form-input" role="search">
<label class="visuallyhidden" for="news-search">Search:</label>
<input type="text" name="news-search" id="news-search" placeholder="Search News" />
<button type="submit">
<i class="icon icon-search"></i>
<span class="visuallyhidden">Search</span>
</button>
</form>
{% endcomment %}
<ul class="list-news">
{% for object in latest %}
{% include 'blog/news_summary.html' with object=object %}
{% endfor %}
</ul>
{% include 'blog/blog_pagination.html' %}
{% endblock content %}
|