Go to file
Stephen Cochrane 71f377db62 Updated CV 2021-08-12 15:40:48 +02:00
.github/workflows Setting up workflow 2020-05-03 21:52:30 +02:00
assets Updated CV 2021-08-12 15:40:48 +02:00
blogs Updated all css 2020-10-19 16:47:13 +02:00
error Them changed to dark mode 2020-10-18 19:11:11 +02:00
raw Updated home 2021-08-12 10:35:32 +02:00
src Tidy up 2021-04-16 20:56:50 +02:00
units YEET THAT COMMIT 2021-01-13 19:30:56 +00:00
.gitignore Basic api working 2021-02-11 16:03:59 +02:00
LICENSE Create LICENSE 2020-05-07 16:07:06 +02:00
Makefile Tidy up 2021-04-16 20:56:50 +02:00
README.md updated 2021-04-04 23:47:10 +02:00
api.sh Basic api working 2021-02-11 16:03:59 +02:00
build.sh Added flag to build.sh 2021-07-27 16:15:32 +02:00
dns.py Added opt args to dns.py 2021-07-27 15:27:10 +02:00
favicon.ico added assets 2020-10-12 22:17:14 +02:00
gencv Small fixes 2020-10-23 13:20:55 +02:00
install.sh Updated install script 2021-04-22 21:52:14 +02:00
nginxd Quick fix 2020-10-30 13:28:41 +02:00
skiqqy.1 Updated CV 2021-08-12 15:40:48 +02:00
start.html Slight changes 2021-02-03 16:47:34 +02:00

README.md

Skiqqy.xyz

This is my website, which is hosted here.

Building

There are two approaches

$ make # Build everything.

Or

$ make demo # Builds everything with injected warning text.

Static site

$ make build

Web Pages

In the current iteration, to add a new page to the website create a raw/<file>.txt, this will generate an html file placed in site/<file>.html. For examples look inside raw/. This file uses a custom markup called skup (skiqqy markup) that has the following features.

Blocks

Wrap text/skup/html in a block, please note the . that terminates the title as well as the EBLOCK that terminates the block.

SBLOCK. <Title>
<text/skup/html>
EBLOCK.

This will generate html that looks something like the following.

+------------------------------------+
|                                    |
|              <Title>               |
|                                    |
|         <text/skup/html>           |
|                                    |
+------------------------------------+

Newlines

To force a newline simply use \\ (just like LaTeX).

To add a link use

a/name.domain/<your link name>/

This will create a hyperlink with the text <your link name pointing to name.domain

Static Blog

The goal of this website is to serve 'static' content that gets updated through scripts, this is to reduce bloat, and to ensure a fast website. To create the 'full' website, it is important to first run,

$ make blog

as this will create blog posts from the files found in blogs/RawBlogs, and and setup all the links and stuff for them, these blog files are written with a custom markup lanuage with very simple markups, Currently there are the following:


(1)

[
Normal Text Goes Here.
]

(2)

(
Block Text Goes here.
)

(1) Will generate:

Normal Text Goes Here.

(2) Will generate:

+--------------------------+
|                          |
|   Block Text Goes Here   |
|                          |
+--------------------------+