Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 1.42 KB

File metadata and controls

32 lines (28 loc) · 1.42 KB
title layout description image
Blog
defaults
In addition to writing about technical writing and computer science research, I publish articles on many topics in the fields of software engineering, software testing, and data science. Find your favorite article and start reading!
/download/images/4101567511_e88d64015c_z.jpg

{% capture page_title %} {{page.title}} {% endcapture %} {% include _jumbotrons/head_jumbotron.html title=page_title subtitle="brief brainstorms on" highlight="technical topics" %}

{% comment %} Only generate the list of posts when requested or for a production build {% endcomment %} {% if jekyll.environment == 'production' or jekyll.environment == 'posts' %}

{% comment %} Iteratively display all of the blog posts {% endcomment %} {% for page in site.posts %} {% assign currentyear = page.date | date: "%Y" %} {% if currentyear != year %}

{{ currentyear }}

{% assign year = currentyear %} {% endif %}
  • {{ page.title }}
  • {% for category in page.categories %} {% comment %} Display the post's tags in a link that is an extra-small sized button {% endcomment %} {{ category }} {% endfor %} {% comment %} Display the post's date in a human-readable fashion {% endcomment %}
    {{ page.date | date_to_long_string }}
{% endfor %}

{% endif %}