Move meta info to README and footer
This removes the About page and moves its contents to the README and footer.
This commit is contained in:
parent
1acfde4320
commit
d19be7b112
5 changed files with 23 additions and 47 deletions
15
README.org
15
README.org
|
@ -4,9 +4,11 @@
|
||||||
|
|
||||||
* About
|
* About
|
||||||
|
|
||||||
This is the source code of my [[https://www.fosterhangdaan.com][personal website & blog]].
|
This is the source code of [[https://www.fosterhangdaan.com]]. It is made with a static site generator called [[https://lume.land/][Lume]].
|
||||||
|
|
||||||
The repository can be found online at [[https://code.fosterhangdaan.com/foster/website]].
|
* Repository
|
||||||
|
|
||||||
|
In case you have received this code from another source, the repository can be found online at [[https://code.fosterhangdaan.com/foster/website]].
|
||||||
|
|
||||||
* Getting Started
|
* Getting Started
|
||||||
|
|
||||||
|
@ -32,6 +34,15 @@ To deploy:
|
||||||
deno task deploy
|
deno task deploy
|
||||||
#+end_example
|
#+end_example
|
||||||
|
|
||||||
|
* Assets
|
||||||
|
|
||||||
|
Sources for assets used in the site:
|
||||||
|
|
||||||
|
- The icons are from [[https://tabler-icons.io/][Tabler Icons]] and [[https://simpleicons.org/][Simple Icons]].
|
||||||
|
- The colour palette of both the light theme and the dark theme is from [[https://github.com/enkia/tokyo-night-vscode-theme][Tokyo Night]].
|
||||||
|
- The sans-serif fonts are [[https://github.com/mona-sans][Mona Sans and Hubot Sans]].
|
||||||
|
- The monospace fonts are from the [[https://monaspace.githubnext.com][Monaspace]] font superfamily.
|
||||||
|
|
||||||
* My Contact Information
|
* My Contact Information
|
||||||
|
|
||||||
- Email: [[mailto:foster@hangdaan.email][foster@hangdaan.email]]
|
- Email: [[mailto:foster@hangdaan.email][foster@hangdaan.email]]
|
||||||
|
|
|
@ -52,18 +52,12 @@ export default function ({ comp }) {
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<p>Copyright © 2023 Foster Hangdaan</p>
|
<p>Copyright © 2023 Foster Hangdaan</p>
|
||||||
<p>
|
<div className="meta">
|
||||||
Made with <a href="https://lume.land/">Lume</a>,{" "}
|
<a href="https://code.fosterhangdaan.com/foster/website">Source</a>
|
||||||
<a href="https://www.typescriptlang.org/">TypeScript</a> and lots of
|
<a href="https://code.fosterhangdaan.com/foster/website/src/branch/trunk/LICENSE.md">
|
||||||
{" "}
|
License
|
||||||
<img
|
</a>
|
||||||
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/heart.svg"
|
</div>
|
||||||
className="icon"
|
|
||||||
style={{ filter: "var(--filter-red)" }}
|
|
||||||
title="love"
|
|
||||||
alt="love"
|
|
||||||
/>.
|
|
||||||
</p>
|
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,16 +46,6 @@ export default function () {
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li className="navbar-list-item">
|
|
||||||
<a href="/about/" title="About">
|
|
||||||
<img
|
|
||||||
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/info-circle.svg"
|
|
||||||
className="icon"
|
|
||||||
style={iconStyle}
|
|
||||||
alt="about"
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
);
|
);
|
||||||
|
|
|
@ -22,7 +22,9 @@ .page-footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.heart {
|
.meta {
|
||||||
color: var(--color-red);
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
21
about.md
21
about.md
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
title: About
|
|
||||||
description: About this website and credits where credit is due.
|
|
||||||
---
|
|
||||||
|
|
||||||
This is the personal website and blog of Foster Hangdaan and was created with
|
|
||||||
[Lume](https://lume.land/) and [TypeScript](https://www.typescriptlang.org/).
|
|
||||||
|
|
||||||
The [source code](https://code.fosterhangdaan.com/foster/website) is under the
|
|
||||||
GNU Affero General Public License (version 3 or later).
|
|
||||||
|
|
||||||
## Credits
|
|
||||||
|
|
||||||
- The icons are from [Tabler Icons](https://tabler-icons.io/) and
|
|
||||||
[Simple Icons](https://simpleicons.org/).
|
|
||||||
- The colour palette of both the light theme and the dark theme is from
|
|
||||||
[Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme).
|
|
||||||
- The sans-serif fonts are
|
|
||||||
[Mona Sans and Hubot Sans](https://github.com/mona-sans).
|
|
||||||
- The monospace fonts are from the [Monaspace](https://monaspace.githubnext.com)
|
|
||||||
font superfamily.
|
|
Loading…
Reference in a new issue