ignore _site in .gitignore
compiled site. oopsies
This commit is contained in:
parent
44e1ea0c08
commit
940f74ac5f
9 changed files with 1 additions and 632 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.direnv
|
.direnv
|
||||||
node_modules
|
node_modules
|
||||||
|
_site
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
<h1>astolfo.org</h1>
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en-AU">
|
|
||||||
<head>
|
|
||||||
<title>astolfo.org</title>
|
|
||||||
<link rel="stylesheet" href="/bundle.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<ul>
|
|
||||||
<li><a class="header-links" href="/store">store</a></li>
|
|
||||||
<li><a class="header-links" href="/blog">blog</a></li>
|
|
||||||
<li><a class="header-links" href="/services">services</a></li>
|
|
||||||
<li><a class="header-links" href="/about">about</a></li>
|
|
||||||
</ul>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
|
|
||||||
<!-- idk put astolfo in a train here, learn pixel art someday -->
|
|
||||||
<div>
|
|
||||||
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
|
|
||||||
<hr>
|
|
||||||
<p>site build at commit [PUT COMMIT HERE]. source avaliable at git.astolfo.org/nico/astolfo.org</p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en-AU">
|
|
||||||
<head>
|
|
||||||
<title>astolfo.org</title>
|
|
||||||
<link rel="stylesheet" href="/bundle.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<ul>
|
|
||||||
<li><a class="header-links" href="/store">store</a></li>
|
|
||||||
<li><a class="header-links" href="/blog">blog</a></li>
|
|
||||||
<li><a class="header-links" href="/services">services</a></li>
|
|
||||||
<li><a class="header-links" href="/about">about</a></li>
|
|
||||||
</ul>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
|
|
||||||
<!-- idk put astolfo in a train here, learn pixel art someday -->
|
|
||||||
<div>
|
|
||||||
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
|
|
||||||
<hr>
|
|
||||||
<p>site build at commit [PUT COMMIT HERE]. source avaliable at git.astolfo.org/nico/astolfo.org</p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,316 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en-AU">
|
|
||||||
<head>
|
|
||||||
<title>astolfo.org</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="/bundle.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">home</a></li>
|
|
||||||
<li><a href="/store">store</a></li>
|
|
||||||
<li><a href="/blog">blog</a></li>
|
|
||||||
<li><a href="/services">services</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div style="padding: 2em;">
|
|
||||||
<div class="blog-content">
|
|
||||||
<h1> Markdown Syntax </h1>
|
|
||||||
<hr>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#overview">Overview</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#philosophy">Philosophy</a></li>
|
|
||||||
<li><a href="#html">Inline HTML</a></li>
|
|
||||||
<li><a href="#autoescape">Automatic Escaping for Special Characters</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="#block">Block Elements</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#p">Paragraphs and Line Breaks</a></li>
|
|
||||||
<li><a href="#header">Headers</a></li>
|
|
||||||
<li><a href="#blockquote">Blockquotes</a></li>
|
|
||||||
<li><a href="#list">Lists</a></li>
|
|
||||||
<li><a href="#precode">Code Blocks</a></li>
|
|
||||||
<li><a href="#hr">Horizontal Rules</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="#span">Span Elements</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#link">Links</a></li>
|
|
||||||
<li><a href="#em">Emphasis</a></li>
|
|
||||||
<li><a href="#code">Code</a></li>
|
|
||||||
<li><a href="#img">Images</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="#misc">Miscellaneous</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#backslash">Backslash Escapes</a></li>
|
|
||||||
<li><a href="#autolink">Automatic Links</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p><strong>Note:</strong> This document is itself written using Markdown; you
|
|
||||||
can <a href="/projects/markdown/syntax.text">see the source for it by adding '.text' to the URL</a>.</p>
|
|
||||||
<hr>
|
|
||||||
<h2>Overview</h2>
|
|
||||||
<h3>Philosophy</h3>
|
|
||||||
<p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p>
|
|
||||||
<p>Readability, however, is emphasized above all else. A Markdown-formatted
|
|
||||||
document should be publishable as-is, as plain text, without looking
|
|
||||||
like it's been marked up with tags or formatting instructions. While
|
|
||||||
Markdown's syntax has been influenced by several existing text-to-HTML
|
|
||||||
filters -- including <a href="http://docutils.sourceforge.net/mirror/setext.html">Setext</a>, <a href="http://www.aaronsw.com/2002/atx/">atx</a>, <a href="http://textism.com/tools/textile/">Textile</a>, <a href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>,
|
|
||||||
<a href="http://www.triptico.com/software/grutatxt.html">Grutatext</a>, and <a href="http://ettext.taint.org/doc/">EtText</a> -- the single biggest source of
|
|
||||||
inspiration for Markdown's syntax is the format of plain text email.</p>
|
|
||||||
<h2>Block Elements</h2>
|
|
||||||
<h3>Paragraphs and Line Breaks</h3>
|
|
||||||
<p>A paragraph is simply one or more consecutive lines of text, separated
|
|
||||||
by one or more blank lines. (A blank line is any line that looks like a
|
|
||||||
blank line -- a line containing nothing but spaces or tabs is considered
|
|
||||||
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
|
|
||||||
<p>The implication of the "one or more consecutive lines of text" rule is
|
|
||||||
that Markdown supports "hard-wrapped" text paragraphs. This differs
|
|
||||||
significantly from most other text-to-HTML formatters (including Movable
|
|
||||||
Type's "Convert Line Breaks" option) which translate every line break
|
|
||||||
character in a paragraph into a <code><br /></code> tag.</p>
|
|
||||||
<p>When you <em>do</em> want to insert a <code><br /></code> break tag using Markdown, you
|
|
||||||
end a line with two or more spaces, then type return.</p>
|
|
||||||
<h3>Headers</h3>
|
|
||||||
<p>Markdown supports two styles of headers, [Setext] [1] and [atx] [2].</p>
|
|
||||||
<p>Optionally, you may "close" atx-style headers. This is purely
|
|
||||||
cosmetic -- you can use this if you think it looks better. The
|
|
||||||
closing hashes don't even need to match the number of hashes
|
|
||||||
used to open the header. (The number of opening hashes
|
|
||||||
determines the header level.)</p>
|
|
||||||
<h3>Blockquotes</h3>
|
|
||||||
<p>Markdown uses email-style <code>></code> characters for blockquoting. If you're
|
|
||||||
familiar with quoting passages of text in an email message, then you
|
|
||||||
know how to create a blockquote in Markdown. It looks best if you hard
|
|
||||||
wrap the text and put a <code>></code> before every line:</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
|
|
||||||
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
|
|
||||||
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
|
|
||||||
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
|
|
||||||
id sem consectetuer libero luctus adipiscing.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>Markdown allows you to be lazy and only put the <code>></code> before the first
|
|
||||||
line of a hard-wrapped paragraph:</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
|
|
||||||
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
|
|
||||||
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
|
|
||||||
</blockquote>
|
|
||||||
<blockquote>
|
|
||||||
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
|
|
||||||
id sem consectetuer libero luctus adipiscing.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>Blockquotes can be nested (i.e. a blockquote-in-a-blockquote) by
|
|
||||||
adding additional levels of <code>></code>:</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>This is the first level of quoting.</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>This is nested blockquote.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>Back to the first level.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>Blockquotes can contain other Markdown elements, including headers, lists,
|
|
||||||
and code blocks:</p>
|
|
||||||
<blockquote>
|
|
||||||
<h2>This is a header.</h2>
|
|
||||||
<ol>
|
|
||||||
<li>This is the first list item.</li>
|
|
||||||
<li>This is the second list item.</li>
|
|
||||||
</ol>
|
|
||||||
<p>Here's some example code:</p>
|
|
||||||
<p>return shell_exec("echo $input | $markdown_script");</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>Any decent text editor should make email-style quoting easy. For
|
|
||||||
example, with BBEdit, you can make a selection and choose Increase
|
|
||||||
Quote Level from the Text menu.</p>
|
|
||||||
<h3>Lists</h3>
|
|
||||||
<p>Markdown supports ordered (numbered) and unordered (bulleted) lists.</p>
|
|
||||||
<p>Unordered lists use asterisks, pluses, and hyphens -- interchangably
|
|
||||||
-- as list markers:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Red</li>
|
|
||||||
<li>Green</li>
|
|
||||||
<li>Blue</li>
|
|
||||||
</ul>
|
|
||||||
<p>is equivalent to:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Red</li>
|
|
||||||
<li>Green</li>
|
|
||||||
<li>Blue</li>
|
|
||||||
</ul>
|
|
||||||
<p>and:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Red</li>
|
|
||||||
<li>Green</li>
|
|
||||||
<li>Blue</li>
|
|
||||||
</ul>
|
|
||||||
<p>Ordered lists use numbers followed by periods:</p>
|
|
||||||
<ol>
|
|
||||||
<li>Bird</li>
|
|
||||||
<li>McHale</li>
|
|
||||||
<li>Parish</li>
|
|
||||||
</ol>
|
|
||||||
<p>It's important to note that the actual numbers you use to mark the
|
|
||||||
list have no effect on the HTML output Markdown produces. The HTML
|
|
||||||
Markdown produces from the above list is:</p>
|
|
||||||
<p>If you instead wrote the list in Markdown like this:</p>
|
|
||||||
<ol>
|
|
||||||
<li>Bird</li>
|
|
||||||
<li>McHale</li>
|
|
||||||
<li>Parish</li>
|
|
||||||
</ol>
|
|
||||||
<p>or even:</p>
|
|
||||||
<ol start="3">
|
|
||||||
<li>Bird</li>
|
|
||||||
<li>McHale</li>
|
|
||||||
<li>Parish</li>
|
|
||||||
</ol>
|
|
||||||
<p>you'd get the exact same HTML output. The point is, if you want to,
|
|
||||||
you can use ordinal numbers in your ordered Markdown lists, so that
|
|
||||||
the numbers in your source match the numbers in your published HTML.
|
|
||||||
But if you want to be lazy, you don't have to.</p>
|
|
||||||
<p>To make lists look nice, you can wrap items with hanging indents:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
|
||||||
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
|
||||||
viverra nec, fringilla in, laoreet vitae, risus.</li>
|
|
||||||
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
|
||||||
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
|
|
||||||
</ul>
|
|
||||||
<p>But if you want to be lazy, you don't have to:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
|
||||||
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
|
||||||
viverra nec, fringilla in, laoreet vitae, risus.</li>
|
|
||||||
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
|
||||||
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
|
|
||||||
</ul>
|
|
||||||
<p>List items may consist of multiple paragraphs. Each subsequent
|
|
||||||
paragraph in a list item must be indented by either 4 spaces
|
|
||||||
or one tab:</p>
|
|
||||||
<ol>
|
|
||||||
<li>
|
|
||||||
<p>This is a list item with two paragraphs. Lorem ipsum dolor
|
|
||||||
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
|
|
||||||
mi posuere lectus.</p>
|
|
||||||
<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
|
|
||||||
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
|
|
||||||
sit amet velit.</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Suspendisse id sem consectetuer libero luctus adipiscing.</p>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<p>It looks nice if you indent every line of the subsequent
|
|
||||||
paragraphs, but here again, Markdown will allow you to be
|
|
||||||
lazy:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>This is a list item with two paragraphs.</p>
|
|
||||||
<p>This is the second paragraph in the list item. You're
|
|
||||||
only required to indent the first line. Lorem ipsum dolor
|
|
||||||
sit amet, consectetuer adipiscing elit.</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Another item in the same list.</p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>To put a blockquote within a list item, the blockquote's <code>></code>
|
|
||||||
delimiters need to be indented:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>A list item with a blockquote:</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>This is a blockquote
|
|
||||||
inside a list item.</p>
|
|
||||||
</blockquote>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>To put a code block within a list item, the code block needs
|
|
||||||
to be indented <em>twice</em> -- 8 spaces or two tabs:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>A list item with a code block:</p>
|
|
||||||
<p><code goes here></p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h3>Code Blocks</h3>
|
|
||||||
<p>Pre-formatted code blocks are used for writing about programming or
|
|
||||||
markup source code. Rather than forming normal paragraphs, the lines
|
|
||||||
of a code block are interpreted literally. Markdown wraps a code block
|
|
||||||
in both <code><pre></code> and <code><code></code> tags.</p>
|
|
||||||
<p>To produce a code block in Markdown, simply indent every line of the
|
|
||||||
block by at least 4 spaces or 1 tab.</p>
|
|
||||||
<p>This is a normal paragraph:</p>
|
|
||||||
<p>This is a code block.</p>
|
|
||||||
<p>Here is an example of AppleScript:</p>
|
|
||||||
<p>tell application "Foo"
|
|
||||||
beep
|
|
||||||
end tell</p>
|
|
||||||
<p>A code block continues until it reaches a line that is not indented
|
|
||||||
(or the end of the article).</p>
|
|
||||||
<p>Within a code block, ampersands (<code>&</code>) and angle brackets (<code><</code> and <code>></code>)
|
|
||||||
are automatically converted into HTML entities. This makes it very
|
|
||||||
easy to include example HTML source code using Markdown -- just paste
|
|
||||||
it and indent it, and Markdown will handle the hassle of encoding the
|
|
||||||
ampersands and angle brackets. For example, this:</p>
|
|
||||||
<p><div class="footer">
|
|
||||||
© 2004 Foo Corporation
|
|
||||||
</div></p>
|
|
||||||
<p>Regular Markdown syntax is not processed within code blocks. E.g.,
|
|
||||||
asterisks are just literal asterisks within a code block. This means
|
|
||||||
it's also easy to use Markdown to write about Markdown's own syntax.</p>
|
|
||||||
<pre><code>tell application "Foo"
|
|
||||||
beep
|
|
||||||
end tell
|
|
||||||
</code></pre>
|
|
||||||
<h2>Span Elements</h2>
|
|
||||||
<h3>Links</h3>
|
|
||||||
<p>Markdown supports two style of links: <em>inline</em> and <em>reference</em>.</p>
|
|
||||||
<p>In both styles, the link text is delimited by [square brackets].</p>
|
|
||||||
<p>To create an inline link, use a set of regular parentheses immediately
|
|
||||||
after the link text's closing square bracket. Inside the parentheses,
|
|
||||||
put the URL where you want the link to point, along with an <em>optional</em>
|
|
||||||
title for the link, surrounded in quotes. For example:</p>
|
|
||||||
<p>This is <a href="http://example.com/">an example</a> inline link.</p>
|
|
||||||
<p><a href="http://example.net/">This link</a> has no title attribute.</p>
|
|
||||||
<h3>Emphasis</h3>
|
|
||||||
<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of
|
|
||||||
emphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an
|
|
||||||
HTML <code><em></code> tag; double <code>*</code>'s or <code>_</code>'s will be wrapped with an HTML
|
|
||||||
<code><strong></code> tag. E.g., this input:</p>
|
|
||||||
<p><em>single asterisks</em></p>
|
|
||||||
<p><em>single underscores</em></p>
|
|
||||||
<p><strong>double asterisks</strong></p>
|
|
||||||
<p><strong>double underscores</strong></p>
|
|
||||||
<h3>Code</h3>
|
|
||||||
<p>To indicate a span of code, wrap it with backtick quotes (<code>`</code>).
|
|
||||||
Unlike a pre-formatted code block, a code span indicates code within a
|
|
||||||
normal paragraph. For example:</p>
|
|
||||||
<p>Use the <code>printf()</code> function.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
|
|
||||||
<!-- idk put astolfo in a train here, learn pixel art someday -->
|
|
||||||
<div>
|
|
||||||
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
|
|
||||||
<hr>
|
|
||||||
<p>site build at commit [PUT COMMIT HERE]. <br>source avaliable at <a href="https://git.nijika.astolfo.org/astolfo/astolfo.org">git.nijika.astolfo.org/astolfo/astolfo.org</a></p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en-AU">
|
|
||||||
<head>
|
|
||||||
<title>astolfo.org</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="/bundle.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">home</a></li>
|
|
||||||
<li><a href="/store">store</a></li>
|
|
||||||
<li><a href="/blog">blog</a></li>
|
|
||||||
<li><a href="/services">services</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div style="padding: 2em;">
|
|
||||||
<div class="blog-content">
|
|
||||||
<h1> All blog posts </h1>
|
|
||||||
<hr>
|
|
||||||
<p><a href="/blog/first/">Markdown Syntax</a></p>
|
|
||||||
<p><a href="/blog/">All blog posts</a></p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
|
|
||||||
<!-- idk put astolfo in a train here, learn pixel art someday -->
|
|
||||||
<div>
|
|
||||||
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
|
|
||||||
<hr>
|
|
||||||
<p>site build at commit [PUT COMMIT HERE]. <br>source avaliable at <a href="https://git.nijika.astolfo.org/astolfo/astolfo.org">git.nijika.astolfo.org/astolfo/astolfo.org</a></p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
142
_site/bundle.css
142
_site/bundle.css
|
|
@ -1,142 +0,0 @@
|
||||||
:root {
|
|
||||||
--text: black;
|
|
||||||
--accent: #ff1b8d;
|
|
||||||
--accent2: #FA7DBC;
|
|
||||||
--background: #fba0e3;
|
|
||||||
--background-body: #fdc6ee;
|
|
||||||
--rounding: 8em;
|
|
||||||
--transitiondur: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
padding: 0px;
|
|
||||||
margin: auto;
|
|
||||||
height: 100vh;
|
|
||||||
background-color: var(--background-body);
|
|
||||||
font-family: ComicShannsMono Nerd Font, Chalkboard, Comic Sans MS, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* basic elements
|
|
||||||
*/
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--accent);
|
|
||||||
transition-duration: var(--transitiondur);
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: black;
|
|
||||||
background-color: var(--accent2);
|
|
||||||
transform: translateY(-10px);
|
|
||||||
display: inline-block;
|
|
||||||
padding: 10px;
|
|
||||||
margin: -10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* navbar
|
|
||||||
*/
|
|
||||||
|
|
||||||
nav {
|
|
||||||
margin: 1em;
|
|
||||||
padding: 0.5em;
|
|
||||||
padding-left: 0.5em;
|
|
||||||
padding-right: 3em;
|
|
||||||
|
|
||||||
border-radius: var(--rounding);
|
|
||||||
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
|
|
||||||
background-color: var(--background);
|
|
||||||
|
|
||||||
width: fit-content;
|
|
||||||
position: fixed;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li{
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav a{
|
|
||||||
transition-duration: 0.3s;
|
|
||||||
padding: 0.3em;
|
|
||||||
display: inline-block;
|
|
||||||
border-radius: var(--rounding);
|
|
||||||
text-decoration: none;
|
|
||||||
color: var(--text);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav a:hover {
|
|
||||||
background-color: var(--accent2);
|
|
||||||
scale: 200%;
|
|
||||||
transform: translateY(-5px) rotate(-7deg);
|
|
||||||
margin-left: 2em;
|
|
||||||
margin-right: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* footer
|
|
||||||
*/
|
|
||||||
|
|
||||||
footer {
|
|
||||||
color: var(--text);
|
|
||||||
background-color: var(--background);
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
margin: 0px;
|
|
||||||
padding: 30px;
|
|
||||||
border-top-right-radius: var(--rounding);
|
|
||||||
border-top-left-radius: var(--rounding);
|
|
||||||
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
|
|
||||||
|
|
||||||
background-image: url("/img/astolfos/footer.png");
|
|
||||||
background-position: 100% 100%;
|
|
||||||
background-size: 10em;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer p,hr,div {
|
|
||||||
padding-left: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes float {
|
|
||||||
0%, 100% {
|
|
||||||
transform: translateY(0px);
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
transform: translateY(-10px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1000px) {
|
|
||||||
footer {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer marquee {
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blog-content {
|
|
||||||
width: 90vw !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* blog
|
|
||||||
*/
|
|
||||||
|
|
||||||
.blog-content {
|
|
||||||
margin: auto;
|
|
||||||
width: 50em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blog-content h1 {
|
|
||||||
font-family: Serif;
|
|
||||||
font-size: 3rem;
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 MiB |
|
|
@ -1,72 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html lang="en-AU">
|
|
||||||
<head>
|
|
||||||
<title>astolfo.org</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="/bundle.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">home</a></li>
|
|
||||||
<li><a href="/store">store</a></li>
|
|
||||||
<li><a href="/blog">blog</a></li>
|
|
||||||
<li><a href="/services">services</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div style="padding: 2em;"><h1>こんにちわ!</h1>
|
|
||||||
<p>Nisi officia excepteur cillum cillum adipisicing pariatur. Lorem fugiat fugiat proident et. Ullamco quis ea enim Lorem irure eu dolore nostrud id. Deserunt mollit in ipsum officia nisi dolor cupidatat ex ad pariatur. Velit sunt esse ad ex non adipisicing aliqua nostrud eu voluptate officia quis ut aute cupidatat. Laboris dolor laborum irure. Sit mollit reprehenderit cillum magna minim amet ullamco ut enim aliqua incididunt proident ad excepteur.
|
|
||||||
|
|
||||||
Deserunt id ea incididunt. Aliqua duis nisi sit minim non adipisicing commodo dolor ea elit minim commodo cillum. Quis laborum sit ad commodo nulla est. Reprehenderit aliquip ullamco minim veniam eiusmod anim anim mollit labore culpa.
|
|
||||||
|
|
||||||
Nulla laborum officia veniam quis in irure. Elit enim ullamco pariatur dolore minim dolore excepteur. Fugiat commodo mollit mollit reprehenderit non magna ad ut consectetur. Tempor proident ex duis id. Sunt incididunt irure sint. Do sint velit veniam eiusmod sit sint veniam reprehenderit sint amet anim aliqua ad velit minim. Anim cupidatat sit nulla.
|
|
||||||
|
|
||||||
Consectetur sunt aliqua irure enim sit ut labore deserunt exercitation laborum esse sit. Qui cupidatat ut nisi veniam do velit. Culpa consectetur occaecat Lorem aliquip elit. Duis ipsum incididunt eu enim labore ullamco excepteur non laborum fugiat quis aliquip reprehenderit mollit quis. Mollit commodo est minim labore culpa minim anim. Sit excepteur fugiat et pariatur culpa magna consequat aute esse amet eu qui veniam irure. Ex ex in pariatur exercitation excepteur quis elit. Quis elit adipisicing fugiat Lorem in do.
|
|
||||||
|
|
||||||
Ipsum anim incididunt adipisicing nulla aliqua tempor elit et. Consequat consequat in sunt Lorem cillum in. Quis aliqua exercitation cupidatat enim amet pariatur aute ipsum enim laborum do elit. Eiusmod nostrud irure dolor duis. Do eiusmod proident tempor nulla ipsum non excepteur dolor sit nisi qui consequat sint est. Laborum pariatur labore anim quis fugiat in amet ad amet Lorem est tempor ex.
|
|
||||||
|
|
||||||
Culpa aliqua id est incididunt enim. Excepteur irure qui do labore non. Laborum non eiusmod et nostrud veniam veniam quis deserunt ea ex exercitation minim dolor. Deserunt pariatur proident et ullamco occaecat. Culpa laboris aute pariatur amet enim adipisicing tempor. Tempor quis cillum reprehenderit cupidatat officia do qui esse quis laboris velit mollit amet.
|
|
||||||
|
|
||||||
Exercitation magna aute consectetur elit eu culpa ut culpa sit occaecat magna sunt sunt. Laboris elit eu tempor anim sit qui eu cupidatat. Id anim ut proident enim non dolor eu aute aute est et magna quis. Deserunt velit et Lorem cupidatat anim consequat dolore ipsum occaecat. Laboris esse nostrud veniam ut pariatur. Qui aute ullamco pariatur sit esse ea in sunt minim tempor nostrud laboris eiusmod. Ut deserunt pariatur aliquip mollit labore anim irure esse. Duis enim pariatur ex et quis id elit nulla fugiat eiusmod elit deserunt velit.
|
|
||||||
|
|
||||||
Ipsum labore laborum deserunt cupidatat nulla. Proident ea veniam do fugiat ad quis nostrud sint velit. Sunt id exercitation deserunt. Enim in veniam velit reprehenderit ea dolore amet. Ipsum elit minim elit. Velit et proident sint adipisicing officia do exercitation ad commodo nulla magna dolore enim dolor adipisicing. Lorem mollit ex deserunt id enim irure et voluptate voluptate officia anim. Nisi consectetur elit sint aute do in exercitation commodo ex reprehenderit.
|
|
||||||
|
|
||||||
In fugiat non sint mollit enim reprehenderit. Eu nulla ut sit Lorem. Non eiusmod commodo cupidatat laboris nostrud labore consectetur eiusmod irure voluptate. Laborum exercitation reprehenderit nulla esse consectetur adipisicing pariatur officia nisi deserunt veniam.
|
|
||||||
|
|
||||||
Duis veniam esse cupidatat mollit proident pariatur ullamco commodo eu. Minim labore officia labore duis commodo ipsum fugiat in minim sint aute. Quis officia fugiat aute nostrud sint aliqua. Deserunt excepteur duis laboris officia pariatur proident dolore nisi amet consectetur. Aliquip exercitation cupidatat est in culpa voluptate ad laborum deserunt minim reprehenderit Lorem.</p>
|
|
||||||
|
|
||||||
<div style="display: flex; flex-direction: row; flex-wrap: wrap;">
|
|
||||||
<div class="services">
|
|
||||||
<h1>Forgejo</h1>
|
|
||||||
<p>Our primary git forge, used by other projects like <a href="https://codeberg.org">Codeberg</a>.
|
|
||||||
</div>
|
|
||||||
<div class="services">
|
|
||||||
<h1>Uptime Kuma</h1>
|
|
||||||
<p></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.services {
|
|
||||||
border: gray 1px solid;
|
|
||||||
padding: 10px;
|
|
||||||
width: 10em;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
|
|
||||||
<!-- idk put astolfo in a train here, learn pixel art someday -->
|
|
||||||
<div>
|
|
||||||
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
|
|
||||||
<hr>
|
|
||||||
<p>site build at commit [PUT COMMIT HERE]. <br>source avaliable at <a href="https://git.nijika.astolfo.org/astolfo/astolfo.org">git.nijika.astolfo.org/astolfo/astolfo.org</a></p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue