blog.trnck.dev
0
fork

Configure Feed

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

Blog

+12 -10
+8 -7
_config.yml
··· 1 1 layout: sidebar 2 2 style: dark 3 3 4 + 4 5 plugins: 5 6 - jekyll-octicons 6 7 - jekyll-github-metadata 7 8 - jemoji 8 - 9 - permalink: /:year/:month/:day/:title/ 9 + permalink: /:title/ 10 10 11 11 defaults: 12 12 - ··· 21 21 # sort_by options: 22 22 # - pushed 23 23 # - stars 24 - limit: 6 24 + limit: 12 25 25 exclude: 26 26 forks: false 27 27 projects: ··· 50 50 # youtube: your_username 51 51 52 52 topics: 53 + 54 + - name: JavaScript 55 + web_url: https://github.com/topics/javascript 56 + image_url: https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png 57 + 53 58 - name: CSS 54 59 web_url: https://github.com/topics/css 55 60 image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/css/css.png ··· 57 62 - name: Python 58 63 web_url: https://github.com/topics/python 59 64 image_url: https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png 60 - 61 - - name: JavaScript 62 - web_url: https://github.com/topics/javascript 63 - image_url: https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png
+2 -2
_includes/thoughts.html
··· 1 - <h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>My Thoughts</h2> 2 - <p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Articles I've written.</p> 1 + <h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>Blog</h2> 2 + <p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Some articles I have written</p> 3 3 <div class="d-sm-flex flex-wrap gutter-condensed mb-4"> 4 4 {% for post in site.posts limit: 6 %} 5 5 <div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
+1
_layouts/home.html
··· 50 50 </div> 51 51 </div> 52 52 </div> 53 + 53 54 {% endif %} 54 55 55 56 {% include footer.html %}
+1 -1
_posts/2019-01-29-hello-world.md
··· 1 1 --- 2 2 title: "Welcome to Jekyll!" 3 - published: false 3 + published: true 4 4 --- 5 5 6 6 **Hello world**, this is my first Jekyll blog post.