A free and open source alternative ekşi sözlük front-end
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ozgursozluk/ozgursozluk/templates/base.html

27 lines
998 B

<!DOCTYPE html>
<html class="{{ 'dark' if request.cookies.get('theme') == 'dark' }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<header>
<div>
<a href="{{ url_for('settings') }}">settings</a>
<a href="{{ source }}" target="_blank">source code</a>
</div>
</header>
<main>
<h1 class="title">
<a href="/">
<span class="ozgur">özgür</span><span class="sozluk">sözlük</span>
</a>
</h1>
<p class="description">{{ description }}</p>
{% block main %}{% endblock %}
</main>
</body>
</html>