bookwyrm/fedireads/templates/layout.html

61 lines
1.9 KiB
HTML
Raw Normal View History

2020-01-25 23:25:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>FediReads</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="/static/format.css">
<link rel="shortcut icon" type="image/x-icon" href="/static/images/favicon.ico">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="FediReads">
<meta name="og:title" content="FediReads">
<meta name="twitter:description" content="Federated Social Reading">
<meta name="og:description" content="Federated Social Reading">
<meta name="twitter:creator" content="@tripofmice">
<meta name="twitter:site" content="@tripofmice">
</head>
<body>
<div id="top-bar">
<header>
2020-01-26 20:14:27 +00:00
<div id="branding"><a href="/">📚FediReads</a></div>
2020-01-25 23:25:19 +00:00
<div>
<div id="account">
{% if user.is_authenticated %}
<form name="logout" action="/logout/" method="post">
2020-01-28 06:49:56 +00:00
Welcome, {% if request.user.localname %}{{ request.user.localname }}{% else %}{{ request.user.username }}{% endif %}
2020-01-25 23:25:19 +00:00
<input type="submit" value="Log out"></input>
</form>
{% else %}
<form name="login" action="/login/" method="post">
<input type="text" name="username"></input>
<input type="password" name="password"></input>
<input type="submit" value="Log in"></input>
</form>
{% endif %}
</div>
<div id="search">
2020-01-28 03:57:17 +00:00
<form action="/search/">
2020-01-25 23:25:19 +00:00
<input type="text" name="q"></input>
<input type="submit" value="🔍"></input>
</form>
</div>
</div>
</header>
</div>
<div id="content">
<div>
{% block content %}
{% endblock %}
</div>
</div>
</body>
</html>