Joseph Hale's Technical Blog
0

Configure Feed

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

feat(home): Support multi-line taglines

Joseph Hale (Feb 6, 2024, 10:10 PM -0700) 653252f1 92125439

+5 -2
+2 -1
_config.yml
··· 16 16 17 17 title: Chirpy # the main title 18 18 19 - tagline: A text-focused Jekyll theme # it will display as the sub-title 19 + tagline: # it will display as the sub-title 20 + - A text-focused Jekyll theme 20 21 21 22 description: >- # used by seo meta and the atom feed 22 23 A minimal, responsive and feature-rich Jekyll theme for technical writing.
+3 -1
_includes/sidebar.html
··· 14 14 <h1 class="site-title"> 15 15 <a href="{{ '/' | relative_url }}">{{ site.title }}</a> 16 16 </h1> 17 - <p class="site-subtitle fst-italic mb-0">{{ site.tagline }}</p> 17 + {% for line in site.tagline %} 18 + <p class="site-subtitle fst-italic mb-0">{{ line }}</p> 19 + {% endfor %} 18 20 </header> 19 21 <!-- .profile-wrapper --> 20 22