2020-10-23 23:31:04 +00:00
|
|
|
# Skiqqy.xyz
|
2020-11-03 18:59:14 +00:00
|
|
|
This is my website, which is hosted [here](https://skiqqy.xyz).
|
2020-10-23 23:31:04 +00:00
|
|
|
|
|
|
|
## Building
|
|
|
|
````
|
2020-10-23 23:45:13 +00:00
|
|
|
$ make
|
|
|
|
````
|
|
|
|
|
|
|
|
## Static site
|
|
|
|
````
|
2020-10-23 23:31:04 +00:00
|
|
|
$ ./build.sh
|
|
|
|
````
|
2020-04-02 22:04:30 +00:00
|
|
|
|
2020-05-03 18:58:27 +00:00
|
|
|
## 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,
|
|
|
|
````
|
2020-10-23 23:52:12 +00:00
|
|
|
$ make blog
|
2020-05-03 18:58:27 +00:00
|
|
|
````
|
|
|
|
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 |
|
|
|
|
| |
|
|
|
|
+--------------------------+
|
|
|
|
````
|
|
|
|
|
|
|
|
## Reason for C
|
|
|
|
Its fast. Aint no body got time for bloated stuff.
|