add link to repo

master
Tomáš Mládek 2020-10-09 23:00:15 +02:00
parent 95a366fd93
commit 0c65d13d49
2 changed files with 104 additions and 83 deletions

View File

@ -186,6 +186,7 @@ async fn render(
"mtime",
&mtime.map_or("???".to_string(), |t| t.format("%c").to_string()),
);
context.insert("version", VERSION);
Ok(HttpResponse::Ok().body(
state

View File

@ -1,84 +1,104 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{garden_title}} - {{page_title}}</title>
<link href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5 {
font-family: 'Merriweather', serif;
}
body {
display: flex;
}
img {
max-width: 100%;
max-height: 100vh;
}
blockquote {
margin: 0;
padding-left: 2em;
border-left: 3px solid lightgray;
}
main {
flex-grow: 1;
}
nav, main {
padding: 0 2em;
}
nav {
min-width: 15%;
width: 15%;
min-height: 100vh;
border-right: 1px solid gray;
}
nav ul {
list-style: none;
padding-left: 0;
}
nav li {
margin: .5em 0;
}
nav .file {
font-style: italic;
}
main footer {
padding: 1em 0;
text-align: right;
color: gray;
}
</style>
</head>
<body>
<nav>
<h2>{{garden_title}}</h2>
<ul>
{% for file in files %}
<li class="{% if file is containing(".md") %}page{% else %}file{% endif %}"><a href="/{{file}}">{{file}}</a></li>
{% endfor %}
</ul>
</nav>
<main>
{{content | safe}}
<footer>
Last modified at {{mtime}}
</footer>
</main>
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{garden_title}} - {{page_title}}</title>
<link href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat&display=swap"
rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5 {
font-family: 'Merriweather', serif;
}
body {
display: flex;
}
img {
max-width: 100%;
max-height: 100vh;
}
blockquote {
margin: 0;
padding-left: 2em;
border-left: 3px solid lightgray;
}
main {
flex-grow: 1;
}
nav, main {
padding: 0 2em;
}
aside {
display: flex;
flex-direction: column;
justify-content: space-between;
min-width: 15%;
width: 15%;
min-height: 100vh;
border-right: 1px solid gray;
}
nav ul {
list-style: none;
padding-left: 0;
}
nav li {
margin: .5em 0;
}
nav .file {
font-style: italic;
}
footer {
padding: 1em 0;
color: gray;
}
aside footer {
text-align: center;
}
aside footer a {
color: gray;
}
main footer {
text-align: right;
}
</style>
</head>
<body>
<aside>
<nav>
<h2>{{garden_title}}</h2>
<ul>
{% for file in files %}
<li class="{% if file is containing(" .md
") %}page{% else %}file{% endif %}"><a href="/{{file}}">{{file}}</a></li>
{% endfor %}
</ul>
</nav>
<footer><a href="https://gitlab.com/tmladek/gardenserver">gardenserver {{version}}</a></footer>
</aside>
<main>
{{content | safe}}
<footer>
Last modified at {{mtime}}
</footer>
</main>
</body>
</html>