Skip to content

Commit

Permalink
Add note about generator to web footer
Browse files Browse the repository at this point in the history
  • Loading branch information
homeworkprod committed May 19, 2024
1 parent a4e70f6 commit cc2657d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

## 0.4.0 (unreleased)

- Added generator to page footer.

- Raised minimum supported Rust version to 1.76.0.

- Updated clap to v4.5.4.
Expand Down
20 changes: 18 additions & 2 deletions src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@
<title>OrgaTalk Discord – Orga team roles and memberships</title>
<style>
:root {
--dimmed: #8e9297
--dimmed: #8e9297;
--link-color: #cccccc;
}

body {
background-color: #2f3136;
color: #fff;
color: #fcfcfc;
font-family: sans-serif;
font-size: 16px;
margin: 0 auto;
max-width: 768px;
padding: 1.5rem 1rem;
}

a {
color: var(--link-color);
}

h1 {
font-size: 2rem;
font-weight: normal;
Expand Down Expand Up @@ -70,6 +75,13 @@
margin: 0.5rem 0 0;
padding: 0;
}

footer {
color: var(--dimmed);
font-size: 0.75rem;
margin-top: 4rem;
text-align: center;
}
</style>
</head>
<body>
Expand All @@ -95,5 +107,9 @@ <h1>OrgaTalk Discord<br>Orga team roles and memberships</h1>
</div>
</main>

<footer>
<div>Generated by <a href="https://github.com/orgatalk/discord-orgateams/">OrgaTalk roles exporter</a>.</div>
</footer>

</body>
</html>

0 comments on commit cc2657d

Please sign in to comment.