31 lines
846 B
HTML
31 lines
846 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1">
|
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<link href="{{ url_for('static', filename='font.css') }}" rel="stylesheet">
|
|
<link href="/static/style.css" rel="stylesheet" type="text/css"/>
|
|
|
|
<title>tiny0 - Custom URL Shortener</title>
|
|
</head>
|
|
|
|
<div id="page-container">
|
|
<div id="content-wrap">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<ul class="footer-list">
|
|
<li class="copyright">© </li>
|
|
<li>2020 Muhammed Ali Dilek</li>
|
|
<ul>
|
|
<li><a href="{{ url_for('donate') }}">Donate</a></li>
|
|
<li><a href="https://github.com/xemeds" target="_blank">GitHub</a></li>
|
|
</ul>
|
|
</ul>
|
|
</footer>
|
|
</html>
|