add link to repo
This commit is contained in:
parent
95a366fd93
commit
0c65d13d49
2 changed files with 104 additions and 83 deletions
|
@ -186,6 +186,7 @@ async fn render(
|
||||||
"mtime",
|
"mtime",
|
||||||
&mtime.map_or("???".to_string(), |t| t.format("%c").to_string()),
|
&mtime.map_or("???".to_string(), |t| t.format("%c").to_string()),
|
||||||
);
|
);
|
||||||
|
context.insert("version", VERSION);
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().body(
|
Ok(HttpResponse::Ok().body(
|
||||||
state
|
state
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{{garden_title}} - {{page_title}}</title>
|
<title>{{garden_title}} - {{page_title}}</title>
|
||||||
<link href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" rel="stylesheet">
|
<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">
|
<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>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
@ -37,7 +38,10 @@
|
||||||
padding: 0 2em;
|
padding: 0 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
aside {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
min-width: 15%;
|
min-width: 15%;
|
||||||
width: 15%;
|
width: 15%;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
@ -57,22 +61,38 @@
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
main footer {
|
footer {
|
||||||
padding: 1em 0;
|
padding: 1em 0;
|
||||||
text-align: right;
|
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
aside footer {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside footer a {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
main footer {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<aside>
|
||||||
<h2>{{garden_title}}</h2>
|
<nav>
|
||||||
<ul>
|
<h2>{{garden_title}}</h2>
|
||||||
{% for file in files %}
|
<ul>
|
||||||
<li class="{% if file is containing(".md") %}page{% else %}file{% endif %}"><a href="/{{file}}">{{file}}</a></li>
|
{% for file in files %}
|
||||||
{% endfor %}
|
<li class="{% if file is containing(" .md
|
||||||
</ul>
|
") %}page{% else %}file{% endif %}"><a href="/{{file}}">{{file}}</a></li>
|
||||||
</nav>
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<footer><a href="https://gitlab.com/tmladek/gardenserver">gardenserver {{version}}</a></footer>
|
||||||
|
</aside>
|
||||||
<main>
|
<main>
|
||||||
{{content | safe}}
|
{{content | safe}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue