mostly filebased Content Presentation System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
843B

  1. <header>
  2. <check if="{{ @navi.languages }}">
  3. <div class="languages">
  4. <include href="navigation.htm" with="menu={{ @navi.languages }}" />
  5. </div>
  6. </check>
  7. <check if="{{ @logo }}">
  8. <true>
  9. <a href="{{ @SITE_URL }}/"><h1>
  10. <img src="/{{ @logo }}" alt="{{ @title }}" />
  11. </h1></a>
  12. </true>
  13. <false>
  14. <h1>{{ @title }}</h1>
  15. </false>
  16. </check>
  17. <check if="{{ @subTitle }}">
  18. <h2>{{ @subTitle }}</h2>
  19. </check>
  20. <check if="{{ @headerInfo1 || @headerInfo2 }}">
  21. <div class="headerInfo">
  22. <span class="headerInfo1">{{ @headerInfo1 }}</span>
  23. <span class="headerInfo2">{{ @headerInfo2 }}</span>
  24. </div>
  25. </check>
  26. </header>
  27. <check if="{{ @banner }}">
  28. <true>
  29. <div id="site-banner"><img src="/{{ @banner }}" alt="{{ @subTitle }}" /></div>
  30. </true>
  31. </check>