blessed-rs/templates/base.html

20 lines
731 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
2022-03-14 00:17:29 +00:00
<link rel="stylesheet" href="/static/normalize.css" />
<link rel="stylesheet" href="/static/index.css" />
<title>{% block title %}Home{% endblock title %} - Blessed.rs</title>
{% endblock head %}
</head>
<body>
2022-04-18 14:43:07 +00:00
<div id="header">
<img class="logo" src="/static/rust-logo-black.svg" />
<div class="page-heading-group">
<h1 class="page-heading">Blessed</h1>
<h2 class="page-subheading">An opinionated guide to the Rust ecosystem</h2>
</div>
</div>
<div id="content">{% block content %}{% endblock content %}</div>
</body>
</html>