ux: CHANGE change 'feeds' to 'sections' - BREAKING - short guide in release notes
This commit is contained in:
parent
98ab0ab419
commit
a99d1db1cb
4 changed files with 59 additions and 59 deletions
20
theme/default/templates/sections.tmpl
Normal file
20
theme/default/templates/sections.tmpl
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% include 'meta.tmpl' %}
|
||||
</head>
|
||||
<body>
|
||||
{% include 'header.tmpl' %}
|
||||
|
||||
<main>
|
||||
<h2>Sections</h2>
|
||||
<ul>
|
||||
{% for section in sections %}
|
||||
<li><a href="/section/{{ section.name }}/">{{ section.name }}</a> ({{ section.count }} posts)</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
{% include 'footer.tmpl' %}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue