this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Blog 4

Tholp 091845f2 7d28b1b1

+68 -4
+5 -1
content/style.css
··· 523 523 width: 100%; 524 524 } 525 525 526 - 526 + .doublefigureimg { 527 + width: 45%; 528 + margin-left: 40px; 529 + margin-right: 40px; 530 + } 527 531 528 532 /* Elements */ 529 533
+1 -1
skid/blog/atom.sk
··· 12 12 <link rel="self" href="https://tholps.site/blog/atom.atom"/> 13 13 <icon>https://tholps.site/favicon.png</icon> 14 14 15 - <!-- Time stamps are only granular to the day because i cant be bothered --> 15 + <!-- Time stamps are only granular to the day because i cant be bothered --> 16 16 !for_each_file_in_group( file "blog" ) {{{ 17 17 <entry> 18 18 <id>https://tholps.site/!output_filename("[[file..1]]")</id>
+1 -1
skid/blog/blog3.sk
··· 35 35 Thats all for now, see you soon. 36 36 37 37 }}} 38 - &blog_nav_no_next("blog2.html" "blog4.html") 38 + &blog_nav("blog2.html" "blog4.html") 39 39 40 40 &bsky_comments("closed") 41 41
+30
skid/blog/blog4.sk
··· 1 + !insert("//style.sk") 2 + !insert("blog_templates.sk") 3 + 4 + !blog_post( 4 "Went hiking" "2025-10-30" "Pictures of rocks and trees") 5 + {{{ 6 + This past weekend my family and I went hiking in Matthiessen State Park since we were nearby. I took some pictures of cool trees and cool rocks. 7 + 8 + !blog_image_tall("/res/blog/4/bridge_down.jpg" "Looking down into the dells from a bridge" "On a bridge near the entrace") 9 + 10 + 11 + !blog_image_tall_double_single_caption("/res/blog/4/downinit.jpg" "Photo shot in the lower dells, Theres walls of rock on either side of the frame and trees scattered" "/res/blog/4/downinit2.jpg" "Ditto" "Theres usually water up to your knees here but it's been dry lately") 12 + 13 + 14 + !blog_image_tall("/res/blog/4/bridge_up.jpg" "Shot of the bridge from earlier but now the photo is taken from the bottom and is looking up at the bridge" "Theres also usually a waterfall here, bridge is the same one as earlier") 15 + 16 + 17 + !blog_image_tall_double("/res/blog/4/bug_graffiti.jpg" "Drawing of weird bug" "Theres a fort at the top that has every inch covered in drawings of dicks and 2 letters with hearts, I choose to take a pic of this thing" "/res/blog/4/defaced_rock.jpg" "Boulder with stuff drawn on it and a face carved in" "Rock at the bottom") 18 + 19 + 20 + !blog_image_tall("/res/blog/4/flat.jpg" "Photo at the edge of the woods looking out to flat farmland" "Walking back and seeing the forest open up to the Illinois flatness so close to all that other stuff is kind of funny") 21 + 22 + We wanted to also go to Starved Rock nearby but it didnt end up working out, oh well. See ya. 23 + 24 + !note("psst, I've added an atom feed to the blog ↓ though if you're reading this when it came out you probably already know about it") 25 + }}} 26 + &blog_nav_no_next("blog3.html" "blog5.html") 27 + 28 + &bsky_comments("closed") 29 + 30 + &copy_footer()
+29
skid/blog/blog_templates.sk
··· 50 50 51 51 <header style="text-align: center;"> 52 52 53 + [index](/blog) 54 + 53 55 [home](/) 54 56 55 57 </header> ··· 115 117 <img width="55%" alt="[[alt]]" title="[[alt]]" src="[[imgsrc]]"/> 116 118 <figcaption>[[caption]]</figcaption> 117 119 </figure> 120 + }}} 121 + 122 + !template(blog_image_tall_double imgsrc alt caption imgsrc2 alt2 caption2){{{ 123 + <div class="divcenterflex"> 124 + <figure class="divcenter"> 125 + <img width="95%" alt="[[alt]]" title="[[alt]]" src="[[imgsrc]]"/> 126 + <figcaption>[[caption]]</figcaption> 127 + </figure> 128 + <figure class="divcenter"> 129 + <img width="95%" alt="[[alt2]]" title="[[alt2]]" src="[[imgsrc2]]"/> 130 + <figcaption>[[caption2]]</figcaption> 131 + </figure> 132 + </div> 133 + }}} 134 + 135 + !template(blog_image_tall_double_single_caption imgsrc alt imgsrc2 alt2 caption){{{ 136 + <div class="divcenterflex"> 137 + <figure class="divcenter"> 138 + <img width="95%" alt="[[alt]]" title="[[alt]]" src="[[imgsrc]]"/> 139 + <figcaption></figcaption> 140 + </figure> 141 + <figure class="divcenter"> 142 + <img width="95%" alt="[[alt2]]" title="[[alt2]]" src="[[imgsrc2]]"/> 143 + <figcaption></figcaption> 144 + </figure> 145 + </div> 146 + <div class="divcenter"><figcaption style="margin-bottom: 20px;">[[caption]]</figcaption></div> 118 147 }}} 119 148 120 149 !template(blog_songblurb song artist album imgsrc color)
+1
skid/changelog.sk
··· 19 19 20 20 # Changelog 21 21 ### Early / Unnoticeable changes omitted for undramatic effect 22 + !change("2025-10-30" "Blog #4") 22 23 !change("2025-10-28" "Add atom feed, link to my Tangled and under the hood cleanup") 23 24 !change("2025-07-30" "Blog #3") 24 25 !change("2025-07-14" "Ditto")
+1 -1
skidmark.toml
··· 5 5 [fileGroups] 6 6 7 7 [fileGroups.blog] 8 - files = ["blog/blog1.sk", "blog/blog2.sk", "blog/blog3.sk"] 8 + files = ["blog/blog1.sk", "blog/blog2.sk", "blog/blog3.sk", "blog/blog4.sk"] 9 9 10 10 [fileGroups.misc] 11 11 files = ["index.sk", "blog/index.sk", "404.sk", "sinister.sk", "junk-drawer.sk", "changelog.sk"]