1234567891011121314151617181920 |
- <div class="container-fluid bg-light">
- <div class="row bottom-spacer" style="padding-top: 50px">
- <div class="col-12 text-center">
- <h2 class="display-4" style="margin-bottom: 0px;">
- Around the web
- </h2>
- <h4><small class="text-muted">Links to all my stuff</small></h4>
- </div>
- </div>
- <% var i = 0 %>
- <div class="row" style="padding-bottom: 50px">
- <div class="col-12 text-center">
- <% config.links.forEach(function(link) { %>
- <%- partial('_partial/social-icons', {link: link.link, icon: link.icon}) %>
- <% if(i == 12) { %><br><% } %>
- <% i += 1 %>
- <% }) %>
- </div>
- </div>
- </div>
|