Tom Willemse
0739882bfa
Share the amount of space used between the source code blocks and other elements. This way (in Firefox) the horizontal scroll bar isnt' pushed all the way over to the next element, but stays in between. This still reduces overlap while also not making the scroll bar crowd the next element. This also fixes a little style bug that the padding was given all around, this is only meant to apply to the top and bottom of the element. |
||
---|---|---|
assets | ||
books | ||
config | ||
emacs | ||
magazines | ||
podcasts | ||
posts | ||
software | ||
src/scss | ||
.gitignore | ||
Dockerfile | ||
emacs.org | ||
favicon.ico | ||
GNUmakefile | ||
guix.org | ||
index.org | ||
Jenkinsfile | ||
literate-build.org | ||
literate-programming.org | ||
manifest.scm | ||
projects.org | ||
README.org |
ryuslash.org README
This is the source project of my website https://ryuslash.org. It doesn't contain much for now, but eventually this will be where all my stuff lives.
Compiling
To work on this project it's recommended that you use Guix Shell.
If you first add the directory containing this project into your ~/.config/guix/shell-authorized-directories
, when you run guix shell
it'll automatically install the necessary dependencies to make sure you can compile and deploy this project:
echo "$(pwd)" >> ~/.config/guix/shell-authorized-directories
And then just run this command to start working:
guix shell
If you didn't add this directory to your shell-authorized-directories
, you can accomplish the same thing with:
guix shell --manifest manifest.scm
To compile a local copy from Org-mode files into HTML, use the command make publish
. This will generate a local copy in the public_html
directory. You can also run make
without any arguments to see what available other commands there are.