Skip to content

Instantly share code, notes, and snippets.

@sbedford
Last active August 29, 2015 14:21
Show Gist options
  • Save sbedford/5b9e9c38e2f5d313b5e3 to your computer and use it in GitHub Desktop.
Save sbedford/5b9e9c38e2f5d313b5e3 to your computer and use it in GitHub Desktop.
ADXPortals-Part1
<div class="container">
<div class= "page-heading" >
<div class= "page-header">
<h1>{{ page.title }}</h1>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-3">
{% assign nav = weblinks["Primary Navigation"] %}
{% if nav %}
<div class="list-group">
{% for link in nav.weblinks %}
<a class="list-group-item" href="{{ link.url | escape }}"> {{ link.name }} </a>
{% endfor %}
</div>
{% endif %}
</div>
<div class="col-sm-8 col-lg-9">
<div class="page-copy">
{{ page.adx_copy }}
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment