Browse Source

Add RSS link to main pages. Add links to contact page. Tweaks to CSS.

Thomas Buck 3 years ago
parent
commit
9984f2b051

+ 1
- 4
input/blog.md View File

@@ -9,7 +9,7 @@ noheader: true
9 9
 
10 10
 # Blog Archive
11 11
 
12
-To receive my latest updates, you can subscribe to the [RSS Feed! ![RSS Logo][logo]][rss]
12
+To receive my latest updates, you can subscribe to the <a href="rss.xml"><img src="img/rss.png">RSS Feed</a>.
13 13
 
14 14
 <!--%
15 15
 from datetime import datetime
@@ -28,6 +28,3 @@ for p in posts:
28 28
     if p.get("description", "") != "":
29 29
         print "<br><span class=\"listdesc\">" + p.get("description", "") + "</span>"
30 30
 %-->
31
-
32
- [rss]: rss.xml
33
- [logo]: img/rss.png

+ 2
- 0
input/contact.md View File

@@ -9,3 +9,5 @@ You can always use this [PGP Key](files/xythobuz.gpg)!
9 9
 * Mail: <xythobuz@xythobuz.de>
10 10
 * Twitter: [@xythobuz](https://twitter.com/xythobuz)
11 11
 * Youtube: [xythobuz](http://www.youtube.com/user/xythobuz)
12
+* Thingiverse: [xythobuz](https://www.thingiverse.com/xythobuz/designs)
13
+* RotorBuilds: [xythobuz](https://rotorbuilds.com/profile/1970)

+ 2
- 0
input/index.md View File

@@ -33,6 +33,8 @@ print int(difference_in_years)
33 33
 %--> year old hard- and software developer from Germany.
34 34
 All of my projects are released as free or open-source software on [my Gitea Server](https://git.xythobuz.de/thomas), [my GitHub profile](https://github.com/xythobuz) and here on my website. Have fun!
35 35
 
36
+To receive my latest updates, you can subscribe to the <a href="rss.xml"><img src="img/rss.png">RSS Feed</a>.
37
+
36 38
 ### Recent Posts
37 39
 
38 40
 <!--%

+ 2
- 0
input/projects.md View File

@@ -7,6 +7,8 @@ This page lists all of my projects that are documented on this website.
7 7
 Some projects have a specific date and time where I worked on them, so they are listed by date below.
8 8
 Some others are on-going or still recent for other reasons, these are listed first.
9 9
 
10
+To receive my latest updates, you can subscribe to the <a href="rss.xml"><img src="img/rss.png">RSS Feed</a>.
11
+
10 12
 <!--%
11 13
 # prints all pages with parent 'projects' or 'stuff'.
12 14
 # first the ones without date, sorted by position.

+ 1
- 1
input/projects/3d-printing/ctc-i3.md View File

@@ -6,7 +6,7 @@ comments: true
6 6
 flattr: true
7 7
 ---
8 8
 
9
-<span style="font-size: small;">[...back to 3D-Printing overview](3d-printing.html)</span>
9
+<span class="listdesc">[...back to 3D-Printing overview](3d-printing.html)</span>
10 10
 
11 11
 **More content coming soon!**
12 12
 

+ 1
- 1
input/projects/3d-printing/fabrikator-mini.md View File

@@ -6,7 +6,7 @@ comments: true
6 6
 flattr: true
7 7
 ---
8 8
 
9
-<span style="font-size: small;">[...back to 3D-Printing overview](3d-printing.html)</span>
9
+<span class="listdesc">[...back to 3D-Printing overview](3d-printing.html)</span>
10 10
 
11 11
 **More content coming soon!**
12 12
 

+ 1
- 1
input/projects/3d-printing/ikea-lack.md View File

@@ -6,7 +6,7 @@ comments: true
6 6
 flattr: true
7 7
 ---
8 8
 
9
-<span style="font-size: small;">[...back to 3D-Printing overview](3d-printing.html)</span>
9
+<span class="listdesc">[...back to 3D-Printing overview](3d-printing.html)</span>
10 10
 
11 11
 **More content coming soon!**
12 12
 

+ 2
- 2
input/projects/3d-printing/octoprint.md View File

@@ -6,7 +6,7 @@ comments: true
6 6
 flattr: true
7 7
 ---
8 8
 
9
-<span style="font-size: small;">[...back to 3D-Printing overview](3d-printing.html)</span>
9
+<span class="listdesc">[...back to 3D-Printing overview](3d-printing.html)</span>
10 10
 
11 11
 All my 3D printers are connected to a Raspberry Pi running [OctoPrint](https://octoprint.org/).
12 12
 For ease of use, I suggest downloading and installing a pre-made [OctoPi image](https://octoprint.org/download/).
@@ -203,4 +203,4 @@ Finally, add the script as a cronjob using `crontab -e`:
203 203
     */5 * * * * sudo -u pi /home/pi/foto-script/upload.sh >/dev/null 2>/dev/null
204 204
 
205 205
 And that's it. An updated photo will appear on your webserver every 5 minutes.
206
-
206
+You can take a look at it [on my website](printer.html).

+ 1
- 1
static/css/style.css View File

@@ -154,7 +154,7 @@ span.font-small {
154 154
 
155 155
 .lightgallery {
156 156
     display: flex;
157
-    justify-content: space-around;
157
+    justify-content: space-evenly;
158 158
     align-items: center;
159 159
     flex-wrap: wrap;
160 160
 }

Loading…
Cancel
Save