31 lines
790 B
HTML
31 lines
790 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Hello!{% endblock %}
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav class="no-overflow fixed width" style="z-index: 20">
|
|
<div>
|
|
<a href="/" class="flex">
|
|
<img src="/assets/logo.svg" class="m-.5" style="height: 32px" alt="RSS Notifier Logo"/>
|
|
<h2 style="margin-bottom: auto; margin-top: auto">RSS Notifier</h2>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
<div style="height: 48px; margin-bottom: 8px"></div>
|
|
<div class="flex end"><button>Create</button></div>
|
|
<table class="centered">
|
|
<tr>
|
|
<th>Feed Name</th>
|
|
<th>Feed URL</th>
|
|
<th>Last Mail Sent</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
{% for feed in feeds %}
|
|
{% include "feed.html" %}
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|