aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/pages/projects.md24
-rw-r--r--static/snapshots/sm-v0.1.tarbin0 -> 12288 bytes
-rw-r--r--templates/base.html13
3 files changed, 32 insertions, 5 deletions
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 @@
1---
2title: Projects
3date: 2022-08-27T12:00:00+02:00
4url: projects.html
5type: page
6draft: false
7---
8
9- [Simple snapshot manager](#simple-snapshot-manager)
10
11While most of my projects are hosted on GitHub, I wanted a centralized location
12to store them independently of GitHub and provide different versions in a bit
13clearer way.
14
15## Simple snapshot manager
16
17Simple snapshot utility that uses TAR to compress current directory into a
18`.tar` file while ignoring some of the directories.
19[GitHub repository](https://github.com/mitjafelicijan/sm).
20
21- Version 0.1 / 2024-10-21 ([sm-v0.1.tar](/snapshots/sm-v0.1.tar))
22 - First release.
23 - Able to tag and create tar snapshots.
24
diff --git a/static/snapshots/sm-v0.1.tar b/static/snapshots/sm-v0.1.tar
new file mode 100644
index 0000000..bbf2c50
--- /dev/null
+++ b/static/snapshots/sm-v0.1.tar
Binary files 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 @@
163 pre code span { display: initial!important; } 163 pre code span { display: initial!important; }
164 } 164 }
165 165
166 @media only screen and (max-width: 800px) { 166 @media only screen and (max-width: 720px) {
167 /* Responsive tables. */ 167 /* Responsive tables. */
168 table { 168 table {
169 display: block; 169 display: block;
170 overflow-y: auto; 170 overflow-y: auto;
171 } 171 }
172 172
173 section.quick-jump { grid-template-columns: 1fr; } 173 .hide-on-mobile { display: none; }
174
175 section.quick-jump { display: none; }
174 } 176 }
175 </style> 177 </style>
176 <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> 178 <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script>
@@ -179,10 +181,11 @@
179 <header> 181 <header>
180 <nav> 182 <nav>
181 <a href="/">Home</a> 183 <a href="/">Home</a>
184 <a href="/projects.html">Projects</a>
182 <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> 185 <a href="https://github.com/mitjafelicijan" target="_blank">Code</a>
183 <a href="https://github.com/mitjafelicijan/probe" target="_blank">Probe</a> 186 <a href="https://github.com/mitjafelicijan/probe" target="_blank" class="hide-on-mobile">Probe</a>
184 <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank">Dotfiles</a> 187 <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank" class="hide-on-mobile">Dotfiles</a>
185 <a href="/assets/mitjafelicijan.pgp.pub.txt">PGP</a> 188 <a href="/assets/mitjafelicijan.pgp.pub.txt" class="hide-on-mobile">PGP</a>
186 <a href="/curriculum-vitae.html">CV</a> 189 <a href="/curriculum-vitae.html">CV</a>
187 <a href="/feed.xml">RSS</a> 190 <a href="/feed.xml">RSS</a>
188 </nav> 191 </nav>