Sha256: 2e7bf9489b1646dc6ac5472b0b4b12cad3fc0e71fbc70467ef8bfa2fdb2cd4e4

Contents?: true

Size: 858 Bytes

Versions: 11

Compression:

Stored size: 858 Bytes

Contents

{% comment %}
  Sidebar widgets
  
  You can add custom widgets to the sidebar of your site by sending 
  both title and contents of your widget through an include. For example:
  
  {% capture widget_content %}
    <p>This will appear in my sidebar!</p>
  {% endcapture %}
  
  {% assign widget_title = "This is an example" %}
  
  {% include blog/widget.html title=widget_title content=widget_content %}
{% endcomment %}

{% assign blogroll_title = "Useful links" %}

{% capture blogroll_content %}
  <dl class="blogroll">
    {%- for item in site.data.blogroll -%}
      <dt>
        <a href="{{ item.url }}" rel="external">
          {{ item.title }}
        </a>
      </dt>
      <dd>
        {{ item.description }}
      </dd>
    {%- endfor -%}
  </dl>
{% endcapture %}

{%- include blog/widget.html title=blogroll_title content=blogroll_content -%}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
jekyll-theme-bean-1.0.7 _includes/widgets.html
jekyll-theme-bean-1.0.6 _includes/widgets.html
jekyll-theme-bean-1.0.5 _includes/widgets.html
jekyll-theme-bean-1.0.5.pre.1 _includes/widgets.html
jekyll-theme-bean-1.0.4 _includes/widgets.html
jekyll-theme-bean-1.0.3 _includes/widgets.html
jekyll-theme-bean-1.0.2.pre.2 _includes/widgets.html
jekyll-theme-bean-1.0.2.pre.1 _includes/widgets.html
jekyll-theme-bean-1.0.2 _includes/widgets.html
jekyll-theme-bean-1.0.1 _includes/widgets.html
jekyll-theme-bean-1.0.0 _includes/widgets.html