2014-04-09 21:56:29 +00:00
|
|
|
# Kirsle.net
|
|
|
|
|
2014-07-01 01:05:30 +00:00
|
|
|
![Kirsle](https://raw.githubusercontent.com/kirsle/kirsle.net/master/www/solar/kirsle.png)
|
|
|
|
|
2018-01-05 18:28:19 +00:00
|
|
|
This is the source code of my personal website, [Kirsle.net][1]. It runs on
|
|
|
|
top of my Go blog application, [kirsle/blog][2].
|
2014-09-12 06:32:00 +00:00
|
|
|
|
|
|
|
This Git repo only contains templates and design files for the main Kirsle.net
|
2018-01-05 18:28:19 +00:00
|
|
|
website. This means only the files that are served directly by the Go CMS
|
2015-10-01 19:47:27 +00:00
|
|
|
(all pages with the "solar" web design) are here; but there are a decently
|
|
|
|
large number of static files and one-off CGI scripts that get served directly
|
|
|
|
by nginx instead. For example the `projects/` folder where I keep downloads of
|
2018-01-05 18:28:19 +00:00
|
|
|
my various software projects, and the `creativity/` and `wizards/` folders.
|
2014-09-12 06:32:00 +00:00
|
|
|
|
|
|
|
So, feel free to look around in this repo, but you won't find anything too
|
2018-01-05 18:28:19 +00:00
|
|
|
interesting in here. It's mostly just Go HTML templates, Markdown pages, and the
|
|
|
|
odd web design file (CSS, JS, and some images).
|
|
|
|
|
|
|
|
For the version of Kirsle.net that ran on my Python CMS, [Rophako][3], check
|
|
|
|
out the `rophako` branch of this repo.
|
2016-06-03 19:20:33 +00:00
|
|
|
|
|
|
|
## Dev Environment Quick Start
|
|
|
|
|
2018-01-05 18:28:19 +00:00
|
|
|
```bash
|
|
|
|
# Make sure you have a Go environment set up. Quickly:
|
|
|
|
export GOPATH="${HOME}/go"
|
|
|
|
export PATH="${PATH}:${GOPATH}/bin"
|
|
|
|
|
|
|
|
# Install my Go blog
|
|
|
|
go get github.com/kirsle/blog/...
|
|
|
|
|
|
|
|
# Run it on the kirsle.net www folder.
|
|
|
|
blog ./www
|
|
|
|
```
|
|
|
|
|
|
|
|
[1]: https://www.kirsle.net/
|
|
|
|
[2]: https://github.com/kirsle/blog
|
|
|
|
[3]: https://github.com/kirsle/rophako
|