Skip to content

Commit 7a396d9

Browse files
committed
UI: Add Footer
1 parent 4ca847e commit 7a396d9

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

static/style.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,4 +410,27 @@ select {
410410
border-radius: 4px;
411411
text-align: center;
412412
line-height: 1.5;
413+
}
414+
415+
/* Footer styles */
416+
.footer {
417+
margin-top: 30px;
418+
text-align: center;
419+
padding: 15px 0;
420+
border-top: 1px solid #ddd;
421+
}
422+
423+
.footer-content {
424+
color: #666;
425+
font-size: 14px;
426+
}
427+
428+
.footer a {
429+
color: #007bff;
430+
text-decoration: none;
431+
font-weight: 500;
432+
}
433+
434+
.footer a:hover {
435+
text-decoration: underline;
413436
}

templates/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ <h2>Repository Information</h2>
8383
</div>
8484
</div>
8585

86+
<footer class="footer">
87+
<div class="footer-content">
88+
WebAPT is available on <a href="https://github.com/HeyMeco/WebAPT" target="_blank">GitHub</a>
89+
</div>
90+
</footer>
91+
8692
<script src="/static/script.js"></script>
8793
</body>
8894
</html>

0 commit comments

Comments
 (0)