26 lines
585 B
HTML
26 lines
585 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Index{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Index</h1>
|
|
<form>
|
|
<input name="q">
|
|
<input type="submit" value="search">
|
|
</form>
|
|
|
|
<div>Username: {{ g.user }}</div>
|
|
|
|
<table class="table w-auto">
|
|
{% for item in examples %}
|
|
<tr>
|
|
<td><a href="{{ article_url(item.title) }}">{{ item.title }}</a></td>
|
|
<td>{{ item.total }}</td>
|
|
<td>{{ "{:.1%}".format(item.with_links / item.total) }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|