---
layout: default
permalink: index.html
title: Personal Homepage of foo boo
description: "Blogging on ...."
---
## [lanyon-plus](https://github.com/dyndna/lanyon-plus)
Based on Jekyll theme: [Lanyon](http://lanyon.getpoole.com) by [**Mark Otto**](https://github.com/mdo)
* add-ons by [Samir Amin](http://sbamin.com)
* [Site features]({{ site.url}}/disclosure#i-classfa-fa-thumbs-o-up-credits-for-site-featuresi)
* License: Open sourced under the [MIT license](http://sbamin.com/disclosure/#theme-major-credit--license).
Maximum four posts on front page where first two posts are featured, and remaining are date sorted.
{% if site.twitter_widget_id %}
{% else %}
Twitter stream will show up here if `twitter_widget_id` is present is `_config.yml`. [Demo](http://sbamin.com)
{% endif %}
{% for post in site.categories.featured limit:2 %}
{% if post.modified.size > 2 %}
{{ post.modified | date_to_string }} {% else %}
{{ post.date | date_to_string }} {% endif %}
{% if post.description.size > 140 %}{{ post.description | markdownify | remove: '
' | remove: '
' }}{% else %}{{ post.excerpt | markdownify | remove: '
' | remove: '
' }}{% endif %}
Read more...
{% endfor %}
{% for post in site.posts limit:2 %}
{% unless post.category contains "featured" %}
{% if post.modified.size > 2 %}
{{ post.modified | date_to_string }}{% else %}
{{ post.date | date_to_string }}{% endif %}
{% if post.description.size > 140 %}{{ post.description | markdownify | remove: '
' | remove: '
' }}{% else %}{{ post.excerpt | markdownify | remove: '
' | remove: '
' }}{% endif %}
Read more...
{% unless forloop.last %}
{% endunless %}
{% endunless %}
{% endfor %}