mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-23 04:03:04 +00:00
20 lines
No EOL
731 B
HTML
20 lines
No EOL
731 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block head %}
|
|
<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>
|
|
<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> |