Add source link to footer

This commit is contained in:
Keisuke Hirata 2026-07-09 02:59:32 +09:00
parent 2966d5b979
commit 37237dc1f7
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View File

@ -42,6 +42,9 @@ function renderNav(items, prefix = []) {
<slot /> <slot />
</main> </main>
</div> </div>
<footer class="site-footer">2026 Hare</footer> <footer class="site-footer">
<span>2026 Hare</span>
<a href="https://gitea.hareworks.net/Hare/Decodal">Source</a>
</footer>
</body> </body>
</html> </html>

View File

@ -90,11 +90,14 @@ a:hover {
} }
.site-footer { .site-footer {
align-items: center;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
color: var(--subtle); color: var(--subtle);
display: flex;
font-size: 0.9rem; font-size: 0.9rem;
gap: 14px;
justify-content: center;
padding: 15px 24px; padding: 15px 24px;
text-align: center;
} }
.layout { .layout {