Template source: partner_list.html

{#{% extends "_layouts/base.html" %}#} {% extends request.master_template %} {% load staticfiles %} {% block meta_title %}HRCP Partners | HR Certification Prep Affiliates{% endblock meta_title %} {% block meta_description %}HRCP is honored to be partnered with many organizations whose goal is to help advance the HR profession. We are thankful for their support of the HR certification and training that they provide.{% endblock meta_description %} {% block page_title %}Partners{% endblock %} {% block page_class %}home-page{% endblock %} {% block header_text %}Our Partners{% endblock header_text %} {% block css %} <link rel='stylesheet' href='{% static "js/slick/slick.css" %}' /> <link rel='stylesheet' href='{% static "js/slick/slick-theme.css" %}' /> <style type='text/css'> .customer-wrapper { margin-bottom:10px; min-height:125px; } /*.slick-prev:before, .slick-next:before { color:black; } .customer-wrapper { margin:10px; border:1px solid #ccc; position:relative; } .customer-wrapper:hover {cursor:pointer;} .overlay { display:none; position:absolute; top:0; left:0; height:100%; width:100%; background-color:rgba(0,0,0,0.6); } .overlay h2 { color:#fff; font-size:18px; text-align:center; }*/ </style> {% endblock css %} {% block content %} <div class='container'> <div class='row'></div> <div class='row' id='breadcrumbs'> Info Center > Partners </div> <p>HRCP is pleased to work with many organizations who strive to advance the HR profession. We appreciate their support of HR certification and the training they provide.</p> <div id='partners_wrapper'> {% for partner in partners %} {% include "partner_snippet.html" with partner=partner %} {% endfor %} </div> </div> {% endblock %} {% block js %} <script type='text/javascript' src='{% static "js/slick/slick.min.js" %}'></script> {% endblock js %} {% block doc_ready %} {# $("#partners_wrapper").slick({ #} {# infinite:true, #} {# slidesToShow:4, #} {# slidesToScroll:3 #} {# }); #} {# #} {# $(".customer-wrapper").hover(function(){ #} {# $(this).find(".overlay").fadeToggle('fast'); #} {# }); #} {% endblock doc_ready %}