social-links.ejs 746 B

1234567891011121314151617181920
  1. <div class="container-fluid bg-light">
  2. <div class="row bottom-spacer" style="padding-top: 50px">
  3. <div class="col-12 text-center">
  4. <h2 class="display-4" style="margin-bottom: 0px;">
  5. Around the web
  6. </h2>
  7. <h4><small class="text-muted">Links to all my stuff</small></h4>
  8. </div>
  9. </div>
  10. <% var i = 0 %>
  11. <div class="row" style="padding-bottom: 50px">
  12. <div class="col-12 text-center">
  13. <% config.links.forEach(function(link) { %>
  14. <%- partial('_partial/social-icons', {link: link.link, icon: link.icon}) %>
  15. <% if(i == 12) { %><br><% } %>
  16. <% i += 1 %>
  17. <% }) %>
  18. </div>
  19. </div>
  20. </div>