Skip to content

Commit 6fd2893

Browse files
committed
add fronted credits
i forgot to do this sooner 😭
1 parent 31a3bd3 commit 6fd2893

File tree

9 files changed

+40
-1
lines changed

9 files changed

+40
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Available commands:
6363

6464
A huge thanks to [tylerlaceby](https://www.youtube.com/@tylerlaceby) for his ["Build a Custom Scripting Language In Typescript"](https://www.youtube.com/playlist?list=PL_2VhOvlMk4UHGqYCLWc6GO8FaPl8fQTh) series.
6565

66+
Fronted design inspired by [modu](https://github.com/cyteon/modu) from [Cyteon](https://github.com/cyteon).
67+
6668
## License
6769

6870
This project is licensed under the [MIT License][license].

eryx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of the package."""
22

3-
CURRENT_VERSION = "0.5.5"
3+
CURRENT_VERSION = "0.5.6"

homepage/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,7 @@ <h2>Example</h2>
6262
</div>
6363
</main>
6464
</body>
65+
<footer>
66+
<p>This page was inspired by <a href="https://www.cyteon.tech/modu">this website</a> by Cyteon</p>
67+
</footer>
6568
</html>

homepage/static/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,26 @@ code {
200200
color: var(--yellow);
201201
}
202202

203+
footer {
204+
background-color: var(--mantle);
205+
color: var(--subtext0);
206+
text-align: center;
207+
width: 100%;
208+
margin-top: 20px;
209+
border-top: 1px solid var(--surface1);
210+
font-size: 0.75rem;
211+
}
212+
213+
a:link {
214+
color: var(--blue);
215+
text-decoration: none;
216+
}
217+
218+
a:visited {
219+
color: var(--blue);
220+
text-decoration: none;
221+
}
222+
203223
@media (max-width: 800px) {
204224
#name {
205225
font-size: 3rem;

package-index/static/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,16 @@ footer p {
263263
margin: 10px 0;
264264
}
265265

266+
footer a:link {
267+
color: var(--blue);
268+
text-decoration: none;
269+
}
270+
271+
footer a:visited {
272+
color: var(--blue);
273+
text-decoration: none;
274+
}
275+
266276
#top-packages li:hover {
267277
border: 1px solid var(--lavender);
268278
}

package-index/templates/dashboard.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ <h2>API Key</h2>
7575

7676
<footer>
7777
<p>2025 &copy; ImShyMike - AGPL v3.0</p>
78+
<p>This page was inspired by <a href="https://modu-packages.vercel.app">this website</a> by Cyteon</p>
7879
<div class="icons">
7980
<a class="icon" href="https://github.com/ImShyMike/Eryx" target="_blank" aria-label="GitHub" title="Github">
8081
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24">

package-index/templates/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ <h5>By {{ package.author_username }}</h5>
5656

5757
<footer>
5858
<p>2025 &copy; ImShyMike - AGPL v3.0</p>
59+
<p>This page was inspired by <a href="https://modu-packages.vercel.app">this website</a> by Cyteon</p>
5960
<div class="icons">
6061
<a class="icon" href="https://github.com/ImShyMike/Eryx" target="_blank" aria-label="GitHub" title="Github">
6162
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24">

package-index/templates/notfound.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ <h2>Package not found D:</h2>
3434

3535
<footer>
3636
<p>2025 &copy; ImShyMike - AGPL v3.0</p>
37+
<p>This page was inspired by <a href="https://modu-packages.vercel.app">this website</a> by Cyteon</p>
3738
<div class="icons">
3839
<a class="icon" href="https://github.com/ImShyMike/Eryx" target="_blank" aria-label="GitHub" title="Github">
3940
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24">

package-index/templates/package.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ <h3>Release History</h3>
7676

7777
<footer>
7878
<p>2025 &copy; ImShyMike - AGPL v3.0</p>
79+
<p>This page was inspired by <a href="https://modu-packages.vercel.app">this website</a> by Cyteon</p>
7980
<div class="icons">
8081
<a class="icon" href="https://github.com/ImShyMike/Eryx" target="_blank" aria-label="GitHub" title="Github">
8182
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24">

0 commit comments

Comments
 (0)