Pageheader.html 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!-- Folgende Attribute werden unterstützt:
  2. art: z.B. Zeugnis, Abgangszeugnis etc. Sollte auf eine vorhandene Datei zeigen
  3. wird unten links platziert im Header
  4. logo: z.B Schullogo. Wird oben recht splatziert
  5. untertitel: Wird unterhalb des Logos platziert. -->
  6. <div class="header">
  7. {#if art}
  8. <img class="art" src="{art}" alt="logo_art"/>
  9. {/if}
  10. {#if logo}
  11. <img class="logo" src="{logo}" alt="logo"/>
  12. {/if}
  13. {#if untertitel}
  14. <img class="untertitel" src="{untertitel}" alt="logo_untertitel"/>
  15. {/if}
  16. <hr class="hr-rot"/>
  17. </div>
  18. <style>
  19. .header {
  20. position: relative;
  21. height: 115px;
  22. }
  23. .art {
  24. position: absolute;
  25. bottom: 12px;
  26. }
  27. .logo {
  28. position: absolute;
  29. right: 0px;
  30. }
  31. .untertitel {
  32. position: absolute;
  33. right: 0px;
  34. bottom: 12px;
  35. }
  36. .hr-rot {
  37. border-color: #ff2700;
  38. margin: 8px 0;
  39. position: absolute;
  40. bottom: 0px;
  41. width: -webkit-fill-available;
  42. }
  43. </style>