aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/_includes/common/footer.html
blob: 7b16e98fe114fd77eecef0f1f744b522b51d7eed (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                           




                                                      
                                                                                                                                                                                                                                                                                                                         
                      

                                               
                                                  
                                                                                                                                                         






                      

                                                                                        

                                    






                                                                                             

                  

         
        </div>
      </div>
      <div class="footer-wrapper-collapse">
        <footer class="navbar-default">
          <div class="container">
            <div style="display: table; width: 100%;">
              <div style="display: table-row;">
                <div style="display: table-cell;">
                  <div class="text-center text-muted"><small>This project is licensed under the terms of the {{ site.settings.project.license | default: 'MIT License' }}. See <a href="{{ '/' | relative_url }}{{ site.settings.project.license_file | default: 'LICENSE.txt' }}">License</a> for details.</small></div>
                </div>
              </div>
              <div style="display: table-row;">
                <div style="display: table-cell;">
                  <div class="text-center text-muted"><small>This version of the page was generated on {{ site.time | date: '%-d %B %Y' }}.</small></div>
                </div>
              </div>
            </div>
          </div>
        </footer>
      </div>
    </div>
    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script src="{{ '/assets/bootstrap/js/bootstrap.min.js' | relative_url }}"></script>
    {% if page.custom_js %}
      {% for js in page.custom_js %}
        {% assign abs_check = js | downcase | split: '//' %}
        {% if abs_check[0] == 'http:' or abs_check[0] == 'https:' or abs_check[0] == blank %}
          {% assign url = js %}
        {% else %}
          {% assign url = '/assets/js/' | relative_url | append: js %}
        {% endif %}
        <script src="{{ url }}"></script>
      {% endfor %}
    {% endif %}
  </body>
</html>