I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 1b4e2025 authored by str4d's avatar str4d
Browse files

Finished blog index methods, added a basic blog index template

parent b051cae1
No related branches found
No related tags found
No related merge requests found
...@@ -221,18 +221,19 @@ def get_blog_index(): ...@@ -221,18 +221,19 @@ def get_blog_index():
""" """
Returns list of valid slugs sorted by date Returns list of valid slugs sorted by date
""" """
ret=[] # list of slugs
# list of slugs(not sorted in any way)
entries=[] entries=[]
# walk over all directories/files # walk over all directories/files
for v in os.walk(BLOG_DIR): for v in os.walk(BLOG_DIR):
# iterate over all files # iterate over all files
slugbase = os.path.relpath(v[0], BLOG_DIR)
for f in v[2]: for f in v[2]:
# ignore all non-.rst files # ignore all non-.rst files
if not f.endswith('.rst'): if not f.endswith('.rst'):
continue continue
entries.append(safe_join(slugbase, f[:-4]))
entries.sort()
return entries
def render_blog_entry(slug): def render_blog_entry(slug):
""" """
...@@ -260,7 +261,9 @@ def render_blog_entry(slug): ...@@ -260,7 +261,9 @@ def render_blog_entry(slug):
@app.route('/<string:lang>/blog/page/<int:page>') @app.route('/<string:lang>/blog/page/<int:page>')
def blog_index(page=0): def blog_index(page=0):
# TODO: implement # TODO: implement
pass entries = get_blog_index()
return render_template('blog/index.html', entries=entries)
@app.route('/<string:lang>/blog/entry/<path:slug>') @app.route('/<string:lang>/blog/entry/<path:slug>')
def blog_entry(slug): def blog_entry(slug):
......
{% extends "global/layout.html" %}
{% block title %}Blog Index{% endblock %}
{% block content %}
<p>Some descriptive text.</p>
<ul class="infolist">
{% for entry in entries -%}
<li><a href="{{ url_for('blog_entry', slug=entry) }}">{{ entry }}</a></li>
{%- endfor %}
</ul>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment