Guest User

Untitled

a guest
Feb 16th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. prtials/_header.html
  2.  
  3. <header class="header {% if (headerColor == 'white') %}header_white{% elif (headerColor == 'black') %}header_black{% endif %} js-header">
  4. <div class="header__inner">
  5. {% if (pageLink == 'main')%}
  6. <span class="header__logo">
  7. {% if (headerColor == 'white')%}
  8. {% include "partials/svg/logo.svg" %}
  9. {% elif (headerColor == 'black')%}
  10.  
  11. {% include "partials/svg/logo_black.svg" %}
  12. {% endif %}
  13. </span>
  14. {% else %}
  15. <a href="main.html" class="header__logo">
  16. {% if (headerColor == 'black')%}
  17. {% include "partials/svg/logo_black.svg" %}
  18. {% elif (headerColor == 'white')%}
  19.  
  20. {% include "partials/svg/logo.svg" %}
  21. {% endif %}
  22. </a>
  23. {% endif %}
  24. </header>
  25.  
  26. main.html
  27.  
  28. {% include "partials/_header.html" %}
  29.  
  30. ---
  31. title: Main
  32. pageLink: main
  33. headerColor: white
  34. footerColor: white
  35. actionBoxColor: black
  36. actionBoxContent: 1
  37. footerType: mainPage
  38. ---
Add Comment
Please, Sign In to add comment