mirror of
https://git.tacowolf.net/TacoWolf/mestizo.monster.git
synced 2026-06-12 08:50:04 -04:00
feat(header): add better metadata and links
This commit is contained in:
parent
ab9618665e
commit
2ec7fb7cf7
5 changed files with 58 additions and 15 deletions
|
|
@ -1,19 +1,46 @@
|
||||||
<footer>
|
<footer>
|
||||||
<p>
|
<p>
|
||||||
<a rel="me noreferrer noopener" target="_tab" href="https://tilde.zone/@taco">mastodon</a> -
|
<a
|
||||||
<a rel="noreferrer noopener" target="_tab" href="https://codeberg.org/takouhai">codeberg</a> -
|
rel="me noreferrer noopener"
|
||||||
|
target="_tab"
|
||||||
|
href="https://tilde.zone/@taco"
|
||||||
|
title="all my cool posts"
|
||||||
|
>mastodon</a
|
||||||
|
>
|
||||||
|
-
|
||||||
|
<a
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_tab"
|
||||||
|
href="https://codeberg.org/takouhai"
|
||||||
|
title="most of my cool code"
|
||||||
|
>codeberg</a
|
||||||
|
>
|
||||||
|
-
|
||||||
<a
|
<a
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
target="_tab"
|
target="_tab"
|
||||||
href="https://keyoxide.org/dde52d5b73e9bcb3da5af230f762860f6b1c66b7"
|
href="https://keyoxide.org/dde52d5b73e9bcb3da5af230f762860f6b1c66b7"
|
||||||
|
title="i know how pgp keys work!"
|
||||||
>keyoxide</a
|
>keyoxide</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a rel="noreferrer noopener" target="_tab" href="https://mestizo.monster">mestizo.monster</a>
|
<a
|
||||||
© current year by
|
rel="noreferrer noopener"
|
||||||
<a rel="noreferrer noopener" target="_tab" href="https://mestizo.monster/about">taco</a> is
|
target="_tab"
|
||||||
licensed under
|
href="https://mestizo.monster"
|
||||||
|
title="all wrongs reserved"
|
||||||
|
>mestizo.monster</a
|
||||||
|
>
|
||||||
|
copyleft 2012 - 2026 by
|
||||||
|
<a
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_tab"
|
||||||
|
href="https://mestizo.monster/about"
|
||||||
|
title="hey, that's me!"
|
||||||
|
>taco</a
|
||||||
|
>
|
||||||
|
is licensed under
|
||||||
<a rel="noreferrer noopener" target="_tab" href="http://creativecommons.org/licenses/by-nc/4.0/"
|
<a rel="noreferrer noopener" target="_tab" href="http://creativecommons.org/licenses/by-nc/4.0/"
|
||||||
>CC BY-NC 4.0</a
|
>CC BY-NC 4.0</a
|
||||||
>.
|
>.
|
||||||
|
|
@ -25,6 +52,7 @@
|
||||||
target="_tab"
|
target="_tab"
|
||||||
href="https://git.tacowolf.net/TacoWolf/mestizo.monster"
|
href="https://git.tacowolf.net/TacoWolf/mestizo.monster"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
title="fancy name for saying you can see the source code"
|
||||||
>open source</a
|
>open source</a
|
||||||
>.
|
>.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,10 @@
|
||||||
<header>
|
<header>
|
||||||
<img href="/" src="/img/taco.svg" />
|
<a href="/">
|
||||||
|
<img
|
||||||
|
href="/"
|
||||||
|
src="/img/taco.svg"
|
||||||
|
alt="vector drawing of a smiling cartoon taco with tortilla legs."
|
||||||
|
/></a>
|
||||||
<nav>
|
<nav>
|
||||||
<h1>mestizo.monster</h1>
|
<h1>mestizo.monster</h1>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,10 @@
|
||||||
<meta property="og:title" content="{{ title }} - mestizo.monster" />
|
<meta property="og:title" content="{{ title }} - mestizo.monster" />
|
||||||
<meta property="og:description" content="{{ description }}" />
|
<meta property="og:description" content="{{ description }}" />
|
||||||
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
|
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
|
||||||
<meta property="og:image:alt" content="a vector image of a smiling cartoon taco." />
|
<meta
|
||||||
|
property="og:image:alt"
|
||||||
|
content="vector drawing of a smiling cartoon taco with tortilla legs."
|
||||||
|
/>
|
||||||
{% else %}
|
{% else %}
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://mestizo.monster{{ page.url }}" />
|
<meta property="og:url" content="https://mestizo.monster{{ page.url }}" />
|
||||||
|
|
@ -18,5 +21,8 @@
|
||||||
<meta property="og:title" content="{{ title }} - mestizo.monster" />
|
<meta property="og:title" content="{{ title }} - mestizo.monster" />
|
||||||
<meta property="og:description" content="{{ description }}" />
|
<meta property="og:description" content="{{ description }}" />
|
||||||
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
|
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
|
||||||
<meta property="og:image:alt" content="a vector image of a smiling cartoon taco." />
|
<meta
|
||||||
|
property="og:image:alt"
|
||||||
|
content="vector drawing of a smiling cartoon taco with tortilla legs."
|
||||||
|
/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
img {
|
a {
|
||||||
width: 15%;
|
width: 15%;
|
||||||
}
|
}
|
||||||
nav {
|
nav {
|
||||||
|
|
@ -47,7 +47,7 @@ header {
|
||||||
main {
|
main {
|
||||||
figure {
|
figure {
|
||||||
img {
|
img {
|
||||||
margin: auto;
|
margin: 0 auto;
|
||||||
width: 420px;
|
width: 420px;
|
||||||
border-radius: 0.42em;
|
border-radius: 0.42em;
|
||||||
}
|
}
|
||||||
|
|
@ -55,6 +55,7 @@ main {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
margin: 2em auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
11
index.md
11
index.md
|
|
@ -8,10 +8,13 @@ the [wedsite](https://homestar.wiki/wiki/Homestar_Runner%27s_Website) of
|
||||||
|
|
||||||
# daniel a. gallegos
|
# daniel a. gallegos
|
||||||
|
|
||||||
| | |
|
> **pronouns:** **`he/him`** or **`they/them`**
|
||||||
| -------------- | ------------------------------- |
|
> **also known as:** `taco`, `takouhai`
|
||||||
| pronouns: | **`he/him`** or **`they/them`** |
|
|
||||||
| also known as: | `taco`, `takouhai` |
|
<figure>
|
||||||
|
<img src="/img/taco.svg" alt="vector drawing of a smiling cartoon taco with tortilla legs.">
|
||||||
|
<figcaption>artwork by <a href="https://www.heyheymomo.com/">heyheymomo</a></figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
- 🔮 code alchemist.
|
- 🔮 code alchemist.
|
||||||
- ⭐ digital storyteller.
|
- ⭐ digital storyteller.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue