Skip to content

Instantly share code, notes, and snippets.

@vitorfs
Created July 7, 2016 14:38
Show Gist options
  • Save vitorfs/4ad54c89d8bbe6097effa206bd66f494 to your computer and use it in GitHub Desktop.
Save vitorfs/4ad54c89d8bbe6097effa206bd66f494 to your computer and use it in GitHub Desktop.
Jekyll Sample Data File Usage
{% for network in site.data.social_networks %}
<div class="row">
<div class="three columns">
<strong>{{ network.name }}</strong>
</div>
<div class="nine columns">
<a href="{{ network.url }}" target="_blank">{{ network.url }}</a>
</div>
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment