Add repo link

This commit is contained in:
Michael Götz 2019-02-07 17:08:37 +01:00
parent 99be38db25
commit 9681b3d92e
2 changed files with 15 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -20,6 +20,10 @@
<a class="navbar-brand" href="#">
<h1>CodiMD notes</h1>
</a>
<div navbar-nav flex-row ml-md-auto d-none d-md-flex>
<a class="nav-item nav-link" href="https://git.wiai.de/mgoetz/codimd_note_overview">Fork me <img
src="{{ url_for('static', filename='images/gitea-192.png') }}" width="35px" heigt="35px"></a>
</div>
</nav>
<div class="container">
@ -37,15 +41,17 @@
</thead>
<tbody>
{% for note in notes %}
<tr>
<td scope="row"><a href="{{host}}/{{note['shortid']}}" target="_blank">{{note['shortid']}}</a></td>
<td>{{note['title']}}</td>
<td>{{note['alias']}}</td>
<td><span class="note-date">{% if note['lastchangeAt'] %}{{note['lastchangeAt'].strftime('%d.%m.%Y %H:%M')}}{% endif %}</span>
</td>
<td>{{note['permission']}}</td>
<td>{%if note['content']%}💬{%else%}❌{%endif%}</td>
</tr>
<tr>
<td scope="row"><a href="{{ host }}/{{ note['shortid'] }}" target="_blank">{{ note['shortid'] }}</a>
</td>
<td>{{ note['title'] }}</td>
<td>{{ note['alias'] }}</td>
<td><span class="note-date">{% if note['lastchangeAt'] %}
{{ note['lastchangeAt'].strftime('%d.%m.%Y %H:%M') }}{% endif %}</span>
</td>
<td>{{ note['permission'] }}</td>
<td>{% if note['content'] %}💬{% else %}❌{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>