From 0b46f1e7f47a7631c00692ec32ad85f78ba64f4c Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Mon, 21 Oct 2024 20:57:53 +0200 Subject: Added projects page --- content/pages/projects.md | 24 ++++++++++++++++++++++++ static/snapshots/sm-v0.1.tar | Bin 0 -> 12288 bytes templates/base.html | 13 ++++++++----- 3 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 content/pages/projects.md create mode 100644 static/snapshots/sm-v0.1.tar diff --git a/content/pages/projects.md b/content/pages/projects.md new file mode 100644 index 0000000..ce2bdd5 --- /dev/null +++ b/content/pages/projects.md @@ -0,0 +1,24 @@ +--- +title: Projects +date: 2022-08-27T12:00:00+02:00 +url: projects.html +type: page +draft: false +--- + +- [Simple snapshot manager](#simple-snapshot-manager) + +While most of my projects are hosted on GitHub, I wanted a centralized location +to store them independently of GitHub and provide different versions in a bit +clearer way. + +## Simple snapshot manager + +Simple snapshot utility that uses TAR to compress current directory into a +`.tar` file while ignoring some of the directories. +[GitHub repository](https://github.com/mitjafelicijan/sm). + +- Version 0.1 / 2024-10-21 ([sm-v0.1.tar](/snapshots/sm-v0.1.tar)) + - First release. + - Able to tag and create tar snapshots. + diff --git a/static/snapshots/sm-v0.1.tar b/static/snapshots/sm-v0.1.tar new file mode 100644 index 0000000..bbf2c50 Binary files /dev/null and b/static/snapshots/sm-v0.1.tar differ diff --git a/templates/base.html b/templates/base.html index fa8c0ae..634841d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -163,14 +163,16 @@ pre code span { display: initial!important; } } - @media only screen and (max-width: 800px) { + @media only screen and (max-width: 720px) { /* Responsive tables. */ table { display: block; overflow-y: auto; } - section.quick-jump { grid-template-columns: 1fr; } + .hide-on-mobile { display: none; } + + section.quick-jump { display: none; } } @@ -179,10 +181,11 @@
-- cgit v1.2.3