add footer linking to website source repository on tildegit

This commit is contained in:
darcy (iris system) 2021-06-08 03:58:54 +12:00
parent 76d8fb0314
commit 050035ea49
5 changed files with 25 additions and 1 deletions

5
_includes/footer.html Normal file
View File

@ -0,0 +1,5 @@
<footer class="main-footer">
<ul class="inline-list">
<li><a href="https://tildegit.org/iris/neotel-website" target="_blank">website source</a></li>
</ul>
</footer>

View File

@ -8,5 +8,7 @@
</head>
<body>
{{ content }}
{% include footer.html %}
</body>
</html>

17
_sass/footer.scss Normal file
View File

@ -0,0 +1,17 @@
.main-footer
{
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
margin: 1rem 0;
font-size: 0.8rem;
color: #888;
a
{
color: inherit;
}
}

View File

@ -3,7 +3,6 @@
height: 100%;
min-height: 100vh;
width: 100%;
min-width: 100vw;
max-width: 100vw;
display: flex;

View File

@ -44,6 +44,7 @@ a
}
@import 'nav';
@import 'footer';
@import 'table';
@import 'utils';
@import 'index';