diff options
Diffstat (limited to '_includes/common/sidebar.html')
-rw-r--r-- | _includes/common/sidebar.html | 78 |
1 files changed, 42 insertions, 36 deletions
diff --git a/_includes/common/sidebar.html b/_includes/common/sidebar.html index 43b25dd..4eeeac2 100644 --- a/_includes/common/sidebar.html +++ b/_includes/common/sidebar.html @@ -1,41 +1,47 @@ {% unless site.settings.sidebar.hide or page.sidebar.hide %} <div class="row"> - <div class="col-xs-12 col-sm-6 col-md-12"> - <h4>About</h4> - {% assign project_desc = site.settings.project.description %} - {% unless project_desc %} - {% if site.github %} - {% assign project_desc = site.github.project_tagline %} - {% endif %} - {% endunless %} - {% if project_desc %} - {% capture project_desc %}{{ project_desc }}. {% endcapture %} - {% endif %} - {% capture project_desc %}{{ project_desc }}Feel free to contribute or contact me.{% endcapture %} - <p>{{ project_desc }}</p> - <div class="list-group wide-enough"> - {% if site.github %} - {% assign github_link = site.settings.navbar.github.link | default: 'GitHub' %} - {% assign github_icon = site.settings.navbar.github.icon | default: 'globe' %} - {% capture github_icon %}<span class="glyphicon glyphicon-{{ github_icon }}"></span> {% endcapture %} - <a class="list-group-item" href="{{ site.github.repository_url }}" target="_blank">{{ github_icon }}{{ github_link }}</a> - {% endif %} - {% assign author_email = site.settings.author.email | default: 'John.Doe@example.com' %} - <a class="list-group-item" href="mailto:{{ author_email }}"><span class="glyphicon glyphicon-envelope"></span> {{ author_email }}</a> - </div> - </div> - {% if site.posts.size > 0 %} - <div class="col-xs-12 col-sm-6 col-md-12"> - <h4>Latest posts</h4> - <div class="list-group wide-enough"> - {% for post in site.posts limit: 5 %} - <a class="list-group-item" href="{{ post.url | relative_url }}"> - <span class="badge"><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</span> - <span class="glyphicon glyphicon-file"></span> {{ post.title }} - </a> - {% endfor %} - </div> - </div> + +{% capture about_content %} +{% assign project_desc = site.settings.project.description %} +{% unless project_desc %} + {% if site.github %} + {% assign project_desc = site.github.project_tagline %} {% endif %} +{% endunless %} +{% if project_desc %} + {% capture project_desc %}{{ project_desc }}. {% endcapture %} +{% endif %} +{% capture project_desc %}{{ project_desc }}Feel free to contribute or contact me.{% endcapture %} +<p>{{ project_desc }}</p> +<div class="list-group wide-enough"> + {% if site.github %} + {% assign github_link = site.settings.navbar.github.link | default: 'GitHub' %} + {% assign github_icon = site.settings.navbar.github.icon | default: 'globe' %} + {% capture github_icon %}<span class="glyphicon glyphicon-{{ github_icon }}"></span> {% endcapture %} + <a class="list-group-item" href="{{ site.github.repository_url }}" target="_blank">{{ github_icon }}{{ github_link }}</a> + {% endif %} + {% assign author_email = site.settings.author.email | default: 'John.Doe@example.com' %} + <a class="list-group-item" href="mailto:{{ author_email }}"><span class="glyphicon glyphicon-envelope"></span> {{ author_email }}</a> +</div> +{% endcapture %} + +{% include common/sidebar_entry.html header='About' content=about_content %} + +{% if site.posts.size > 0 %} + +{% capture latest_posts_content %} +<div class="list-group wide-enough"> + {% for post in site.posts limit: 5 %} + <a class="list-group-item" href="{{ post.url | relative_url }}"> + <span class="badge"><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</span> + <span class="glyphicon glyphicon-file"></span> {{ post.title }} + </a> + {% endfor %} +</div> +{% endcapture %} + +{% include common/sidebar_entry.html header='Latest posts' content=latest_posts_content %} +{% endif %} + </div> {% endunless %} |