Skip to content

Latest commit

 

History

History
91 lines (83 loc) · 3.33 KB

index.md

File metadata and controls

91 lines (83 loc) · 3.33 KB
layout title subtitle keywords description use-site-title
page
César Soto Valero
I'm into {Tech ∩ Science}
César Soto Valero, research, software engineering, KTH, WASP Sweden, software technology, PhD in Computer Science
César Soto Valero is a computer scientist, software engineer, and content creator. He completed a PhD at KTH Royal Institute of Technology in Sweden. César is passionate about science, technology, and education.
true
{% include social.html type="page" %}

{% assign current_date = 'now' | date: '%Y-%m' %} {% assign current_month_post_count = 0 %} {% for post in site.posts %} {% assign post_date = post.date | date: '%Y-%m' %} {% if post_date == current_date %} {% assign current_month_post_count = current_month_post_count | plus: 1 %} {% endif %} {% endfor %}

{% assign published_posts = site.posts | where: "published", true %}

{% assign all_tags = "" | split: "" %} {% for post in site.posts %} {% assign all_tags = all_tags | concat: post.tags %} {% endfor %} {% assign unique_tags = all_tags | uniq %}

{% for post in site.posts limit:10 %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}

Posted on {{ post.date | date: "%B %-d, %Y" }}

{% if post.image %}
{{ post.image }}
{% endif %}
{{ post.description | strip_html | truncatewords: site.excerpt_length }} {% assign excerpt_word_count = post.excerpt | number_of_words %} {% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}

Continue reading...

{% endif %}
{% endfor %}