footer.html 746 B

123456789101112131415
  1. <footer>
  2. <div id="footer">
  3. <ul class="footer-content">
  4. {% if SITESUBTITLE %}
  5. <li class="elegant-subtitle"><span class="site-name">{{ SITENAME }}</span> - {{ SITESUBTITLE }}</li>
  6. {% endif %}
  7. {% from '_includes/_defaults.html' import SITE_LICENSE with context %}
  8. {% if SITE_LICENSE %}
  9. <li class="elegant-license">{{ SITE_LICENSE }}</li>
  10. {% endif %}
  11. <li class="elegant-power">Powered by <a href="http://getpelican.com/" title="Pelican Home Page">Pelican</a>. Theme: <a href="http://oncrashreboot.com/pelican-elegant" title="Theme Elegant Home Page">Elegant</a> by <a href="http://oncrashreboot.com" title="Talha Mansoor Home Page">Talha Mansoor</a></li>
  12. </ul>
  13. </div>
  14. </footer>