make titles always uppercase. cleanup copy footer
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
Madison Grubb
2025-09-05 13:21:06 -04:00
parent d436284476
commit 23fae22735

View File

@@ -70,6 +70,7 @@ export function dungeonTemplate(data) {
h1 { h1 {
font-family: ${headingFont}; font-family: ${headingFont};
text-align: center; text-align: center;
text-transform: uppercase;
font-size: 2em; font-size: 2em;
margin: 0.2em 0 0.3em; margin: 0.2em 0 0.3em;
color: #1a1a1a; color: #1a1a1a;
@@ -217,7 +218,7 @@ export function dungeonTemplate(data) {
<div class="map-image-container"> <div class="map-image-container">
<img src="${data.map}" alt="Dungeon Map"> <img src="${data.map}" alt="Dungeon Map">
</div> </div>
<footer>Generated with Scrollsmith • © ${new Date().getFullYear()}</footer> <footer>Scrollsmith • © ${new Date().getFullYear()}</footer>
</div> </div>
</body> </body>
</html> </html>