~mika/www.m1kadev.nl

f708e36db86e5b649d463775a0a770b9bd1e3990 — m1kadev 7 months ago 9063726
add projects page
3 files changed, 19 insertions(+), 10 deletions(-)

M src/index.css
A src/projects.fxg
M src/template.html
M src/index.css => src/index.css +1 -1
@@ 91,11 91,11 @@ nav {
    font-family: "Gothic A1", sans-serif;
    font-size: large;
    color: var(--txt-colour);
    z-index: 10;
    padding-top: 1em;
}

nav>a {
    display: block;
    text-align: right;
    position: relative;
}
\ No newline at end of file

A src/projects.fxg => src/projects.fxg +8 -0
@@ 0,0 1,8 @@
= projects =

=== fxg ===

<#https://github.com/m1kadev/fxg fxg> is my own markup language, written in <#https://rust-lang.org/ Rust>. it aims to maximise readability in text form, and tries to only have one way to write markup (unlike Markdown). you can view <#https://github.com/m1kadev/www.m1kadev.nl/blob/main/src/projects.fxg the source> of this page, if you'd like to see for yourself.

=== m1kadev.nl ===
the site you're on right now! the <#https://github.com/m1kadev/www.m1kadev.nl/blob/main/build.exs generator> for this site is written in elixir. all code for the generator besides <#https://hexdocs.pm/tzdata/readme.html Tzdata, for the build timestamp> is written by me.
\ No newline at end of file

M src/template.html => src/template.html +10 -9
@@ 1,5 1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en-GB">

<head>
    <meta charset="UTF-8">


@@ 12,14 12,6 @@
</head>

<body>
    <div id="mark">
        <h3>.nl</h3>
        <h1>m1kadev</h1>
        <nav>
            <a href="/">home</a>
            <a href="/projects">projects</a>
        </nav>
    </div>
    <div id="content">
        <main>
            <fxg-content />


@@ 38,6 30,15 @@
        </main>
    </div>

    <div id="mark">
        <h3>.nl</h3>
        <h1>m1kadev</h1>
        <nav>
            <a href="/">home</a>
            <a href="/projects.html">projects</a>
        </nav>
    </div>

</body>

</html>
\ No newline at end of file