💄 social links

This commit is contained in:
mi
2025-11-06 22:18:00 +10:00
parent f15ea73235
commit b13833962d
2 changed files with 105 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ title }}{% endblock %} - Sunday Comics</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="alternate" type="application/rss+xml" title="Sunday Comics RSS Feed" href="{{ url_for('static', filename='feed.rss') }}">
{% block extra_css %}{% endblock %}
</head>
<body>
@@ -31,7 +32,32 @@
<footer>
<div class="container">
<p>&copy; 2025 Sunday Comics. All rights reserved.</p>
<div class="footer-content">
<div class="footer-section">
<h3>Follow</h3>
<div class="social-links">
<!-- Uncomment and update with your social links -->
<!-- <a href="https://twitter.com/yourhandle" target="_blank">Twitter</a> -->
<!-- <a href="https://instagram.com/yourhandle" target="_blank">Instagram</a> -->
<!-- <a href="https://mastodon.social/@yourhandle" target="_blank">Mastodon</a> -->
<a href="{{ url_for('static', filename='feed.rss') }}">RSS Feed</a>
</div>
</div>
<div class="footer-section">
<h3>Newsletter</h3>
<!-- Replace with your newsletter service form -->
<!-- <form class="newsletter-form" action="#" method="post">
<input type="email" name="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form> -->
<p class="newsletter-placeholder">Newsletter coming soon!</p>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2025 Sunday Comics. All rights reserved.</p>
</div>
</div>
</footer>