123456789101112131415161718 |
- <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 justify-content-center" style="padding-bottom: 50px">
- <div class="col-12 col-md-8 text-center">
- <% config.links.forEach(function(link) { %>
- <%- partial('_partial/social-icons', {link: link.link, icon: link.icon}) %>
- <% }) %>
- </div>
- </div>
- </div>
|