this repo has no description
0
fork

Configure Feed

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

Add atom feed button to blog index, change to be automated

Tholp 24cfd9f3 64a343d2

+12 -16
+2 -1
skid/blog/blog_templates.sk
··· 41 41 &page_title("Blog #[[number]]: [[title]]") 42 42 &basic_embed("Blog #[[number]]: [[title]]" "[[desc]]") 43 43 44 + !&section(number){{{[[number]]}}} 44 45 !&section(title){{{[[title]]}}} 46 + !&section(date){{{[[date]]}}} 45 47 !&section(blurb){{{[[desc]]}}} 46 - !&section(date){{{[[date]]}}} 47 48 48 49 !construction() 49 50
+10 -15
skid/blog/index.sk
··· 2 2 &insert("blog_templates.sk") 3 3 &page_title("Blog Index") 4 4 5 - <!-- Doing this manually for now but ill change it once i have better inserts and filegroup stuff --> 6 - 7 - !template(blog_stub number title date desc) 8 - {{{ 9 - <div align="center" style="color: #cac123;" class="blog_container"> 10 - <a href="blog[[number]].html"> 11 - <h1>!colored("#[[number]]:" #00FF00) [[title]]</h1> 12 - <h4>[[date]] - [[desc]]</h4> 13 - </a> 14 - </div> 15 - }}} 16 - 17 5 !construction() 18 6 19 7 <header style="text-align: center;"> 20 8 21 9 [home](/) 22 10 11 + <a href="/blog/atom.atom">atom feed</a> 12 + 23 13 </header> 24 14 25 - !blog_stub( 3 "Rainy Bass" "2025-7-30" "Not fishing for compliments") 26 - !blog_stub( 2 "An Overview on Skidmark" "2025-7-11" "Nominative determinism in software") 27 - !blog_stub( 1 "Is This Thing On?" "2025-6-2" "The 'thlog'? probably not.") 15 + !for_each_file_in_group_reverse( post "blog" ) {{{ 16 + <div align="center" style="color: #cac123;" class="blog_container"> 17 + <a href="blog!insert("[[post..1]]" "number").html"> 18 + <h1>!colored("#!insert("[[post..1]]" "number"):" #00FF00) !insert("[[post..1]]" "title")</h1> 19 + <h4>!insert("[[post..1]]" "date") - !insert("[[post..1]]" "blurb")</h4> 20 + </a> 21 + </div> 22 + }}} 28 23 29 24 30 25