add link to source code

This commit is contained in:
Daniel Langbein 2022-12-14 19:10:28 +01:00
parent 474cd6603f
commit f4f6541fbb
2 changed files with 23 additions and 20 deletions

View File

@ -11,6 +11,7 @@
</head> </head>
<body> <body>
<main> <main>
<h1>MastodonTootFollower</h1> <h1>MastodonTootFollower</h1>
<p> <p>
In the following you can generate a link to follow a conversation on Mastodon. In the following you can generate a link to follow a conversation on Mastodon.
@ -46,6 +47,8 @@
</li> </li>
</ul> </ul>
<p>Generated link: <a href="https://localhost:443" id="href1"></a></p> <p>Generated link: <a href="https://localhost:443" id="href1"></a></p>
<p></p>
<p><a href="https://codeberg.org/privacy1st/MastodonTootFollower">Source Code</a> of this project.</p>
</main> </main>
<script src="{{ url_for('static', filename='index.js') }}"></script> <script src="{{ url_for('static', filename='index.js') }}"></script>

View File

@ -10,10 +10,10 @@
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" type="image/x-icon"> <link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" type="image/x-icon">
</head> </head>
<body> <body>
<main>
<h1>News from the conversation</h1> <h1>News from the conversation</h1>
<p>List of changes from the conversation since your last visit.</p> <p>List of changes from the conversation since your last visit.</p>
<table class="styled-table"> <table class="styled-table">
<thead> <thead>
<tr> <tr>
<th>Date</th> <th>Date</th>
@ -30,7 +30,7 @@
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</main>
</body> </body>
</html> </html>