27 lines
781 B
HTML
27 lines
781 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="fedhub is a work-in-progress federated git forge.">
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" href="/static/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div id="header" class="container">
|
|
<a href="/" id="title" class="title nocolorlink">{{ fedhub.site_name }}</a>
|
|
|
|
<div id="nav">
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container" style="padding: 5px 40px;">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|