feat(links): legal info and credits in card

This commit is contained in:
Anhgelus Morhtuuzh 2024-11-13 13:50:19 +01:00
parent d9d7ab50c5
commit 498a4ef4ca
No known key found for this signature in database
GPG key ID: CAD341EFA92DDDE5
3 changed files with 14 additions and 3 deletions

View file

@ -44,6 +44,8 @@ a {
gap: 1rem; gap: 1rem;
font-size: 16px; font-size: 16px;
margin-left: 1rem; margin-left: 1rem;
align-items: center;
justify-content: center;
@media only screen and (max-width: vars.$bp-little) { @media only screen and (max-width: vars.$bp-little) {
gap: 0; gap: 0;
align-items: center; align-items: center;
@ -169,14 +171,17 @@ h4 {
column-gap: 1rem; column-gap: 1rem;
row-gap: 0.5rem; row-gap: 0.5rem;
@media only screen and (max-width: vars.$bp-little) { @media only screen and (max-width: vars.$bp-little) {
grid-template-columns: 1fr; grid-template-columns: 1fr 1fr;
column-gap: 0.5rem; column-gap: 0.5rem;
align-items: center; align-items: center;
margin-bottom: 2rem;
direction: rtl;
} }
& .link { & .link {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 100%;
width: 100%; width: 100%;
box-shadow: 0 0 50px -20px rgba(0,0,0,0.75); box-shadow: 0 0 50px -20px rgba(0,0,0,0.75);
border-radius: 16px; border-radius: 16px;

View file

@ -15,8 +15,6 @@
</div> </div>
<footer class="credits"> <footer class="credits">
<p>Crafted by <a href="https://www.anhgelus.world/" target="_blank">Anhgelus Morhtuuzh</a></p> <p>Crafted by <a href="https://www.anhgelus.world/" target="_blank">Anhgelus Morhtuuzh</a></p>
<p><a href="{{ .Data.Legal.LegalInformationLink }}">Legal information</a></p>
<p><a href="/credits">Credits</a></p>
</footer> </footer>
<script type="module" src="{{getAssetPath "index.js"}}" defer></script> <script type="module" src="{{getAssetPath "index.js"}}" defer></script>
</body> </body>

View file

@ -18,9 +18,17 @@
<a href="{{ .Link }}" style="{{ .GetLinkColor }}">{{ .Content }}</a> <a href="{{ .Link }}" style="{{ .GetLinkColor }}">{{ .Content }}</a>
</div> </div>
{{ end }} {{ end }}
<div class="link" style="{{ .Color.Button.GetBackground }}">
<a href="{{ .Legal.LegalInformationLink }}" target="_blank" style="{{ .Color.Button.GetTextColor }}">
Legal information
</a>
</div>
<div class="link" style="{{ .Color.Button.GetBackground }}"> <div class="link" style="{{ .Color.Button.GetBackground }}">
<a href="/tags" style="{{ .Color.Button.GetTextColor }}">Tags</a> <a href="/tags" style="{{ .Color.Button.GetTextColor }}">Tags</a>
</div> </div>
<div class="link" style="{{ .Color.Button.GetBackground }}">
<a href="/credits" style="{{ .Color.Button.GetTextColor }}">Credits</a>
</div>
</div> </div>
</main> </main>
{{end}} {{end}}