Add repo link
This commit is contained in:
parent
99be38db25
commit
9681b3d92e
BIN
src/static/images/gitea-192.png
Normal file
BIN
src/static/images/gitea-192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.5 KiB |
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user