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="#">
|
<a class="navbar-brand" href="#">
|
||||||
<h1>CodiMD notes</h1>
|
<h1>CodiMD notes</h1>
|
||||||
</a>
|
</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>
|
</nav>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@ -37,15 +41,17 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for note in notes %}
|
{% for note in notes %}
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="row"><a href="{{host}}/{{note['shortid']}}" target="_blank">{{note['shortid']}}</a></td>
|
<td scope="row"><a href="{{ host }}/{{ note['shortid'] }}" target="_blank">{{ note['shortid'] }}</a>
|
||||||
<td>{{note['title']}}</td>
|
</td>
|
||||||
<td>{{note['alias']}}</td>
|
<td>{{ note['title'] }}</td>
|
||||||
<td><span class="note-date">{% if note['lastchangeAt'] %}{{note['lastchangeAt'].strftime('%d.%m.%Y %H:%M')}}{% endif %}</span>
|
<td>{{ note['alias'] }}</td>
|
||||||
</td>
|
<td><span class="note-date">{% if note['lastchangeAt'] %}
|
||||||
<td>{{note['permission']}}</td>
|
{{ note['lastchangeAt'].strftime('%d.%m.%Y %H:%M') }}{% endif %}</span>
|
||||||
<td>{%if note['content']%}💬{%else%}❌{%endif%}</td>
|
</td>
|
||||||
</tr>
|
<td>{{ note['permission'] }}</td>
|
||||||
|
<td>{% if note['content'] %}💬{% else %}❌{% endif %}</td>
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user