fix some links etc

This commit is contained in:
Nemo 2024-01-04 11:39:19 +05:30
parent 5961e3289b
commit 5295e63a7b
5 changed files with 20 additions and 8 deletions

View File

@ -32,14 +32,20 @@ In some cases, due to unicode standard updates taking time to rollout, the emoji
as the [Refugee Flag](https://emojipedia.org/refugee-nation-flag) (🏳‍🟧‍⬛‍🟧), which shows up as 4 characters almost everywhere, since
the proposal isn't accepted yet.
## License
Licensed under the [MIT License](https://nemo.mit-license.org/).
See LICENSE file for details.
## Why
Think of this as a poor man's Google Doodle for any website, where you might have daily refreshes. I'm currently using it for [news.tatooine.club](https://news.tatooine.club),
where I wanted to put a 🎄 next to the date for Christmas, but extended it to this project. See [Origin Post](https://tatooine.club/@nemo/111647981554186397) for more details.
## Coverage
This currently covers akmost half of the days in 2024. Help is welcome to add more days via PRs or issues.
## License
Licensed under the [MIT License](https://nemo.mit-license.org/).
See LICENSE file for details.
[undays]: https://www.un.org/en/observances/list-days-weeks

View File

@ -1,5 +1,5 @@
url: "https://captnemo.in" # the base hostname & protocol for your site, e.g. http://example.com
baseurl: "/emoji-every-day/" # the subpath of your site, e.g. /blog
baseurl: "/emoji-every-day" # the subpath of your site, e.g. /blog
title: "Emoji Every Day" # the name of your site, e.g. ACME Corp.
exclude:
- vendor

View File

@ -1,6 +1,6 @@
<footer>
<a href="/about">About</a> |
<a href="/">Calendar</a> |
<a href="{{site.baseurl}}/about/">About</a> |
<a href="{{site.baseurl}}/">Calendar</a> |
<a href="https://github.com/captn3m0/emoji-every-day">Source</a> |
<a href="https://raw.githubusercontent.com/captn3m0/emoji-every-day/main/LICENSE">License</a> |
<a href="https://raw.githubusercontent.com/captn3m0/emoji-every-day/main/LICENSE">License</a>
</footer>

View File

@ -7,7 +7,7 @@
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
</head>
<body>
<h1>{{page.title}}</h1>
<h1><a href="{{site.baseurl}}{{page.url}}">{{page.title}}</a></h1>
<main>
{{ content }}
</main>

View File

@ -7,6 +7,12 @@ $today-color: #e74c3c;
h1 {
color: $primary-color;
text-align: center;
a{
text-decoration: none;
}
a:visited{
color: $primary-color;
}
}
.calendar {