Advertisement
Guest User

om-header.ftl

a guest
Dec 14th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <#import "utils.ftl" as u />
  2.  
  3. <script type="text/javascript">
  4. <#if superSearchEnabled?? && superSearchEnabled>
  5. var showSuperSearch = true;
  6. var superSearchUrl = "${urls.getSuperSearchIframeUrl()}";
  7. <#else>
  8. var showSuperSearch = false;
  9. </#if>
  10. </script>
  11.  
  12. <#if superSearchEnabled?? && superSearchEnabled>
  13. <style>
  14. #searchIframe {
  15. width: 100%;
  16. border: none;
  17. height: 45px;
  18. z-index: 999;
  19. position:absolute;
  20. top :0px;
  21. }
  22. .super-search-placeholder {
  23. position:relative;
  24. width: 100%;
  25. height: 45px;
  26. display: none;
  27. }
  28.  
  29. </style>
  30.  
  31. <script type="text/javascript">
  32.  
  33. window.onmessage = function(e){
  34. if (e.origin === "${urls.superSearchIFrameOrigin()}") {
  35. var newHeight = e.data;
  36. if (newHeight) {
  37. $("#searchIframe").height(newHeight);
  38. }
  39. }
  40. };
  41.  
  42. </script>
  43.  
  44. <div class="super-search-placeholder"></div>
  45.  
  46. </#if>
  47. <div class="om-header">
  48. <div id="headerNav" class="header-nav">
  49. <ul>
  50. <li>
  51. <a href="http://www.${(locale == "sv")?string("demokrati","demokratia")}.fi"><@u.message "otherServices.demokratia"/></a>
  52.  
  53. <li>
  54. <a href="https://www.kansalaisaloite.fi/${locale}"><@u.message "otherServices.initiative"/></a>
  55.  
  56. <li>
  57. <a class="active" href="${urls.baseUrl}/${locale}"><@u.message "otherServices.municipalityinitiative"/></a>
  58.  
  59. <li>
  60. <a href="http://www.lausuntopalvelu.fi/"><@u.message "otherServices.lausuntopalvelu"/></a>
  61.  
  62. <li>
  63. <a href="http://www.${(locale == "sv")?string("ungasideer","nuortenideat")}.fi"><@u.message "otherServices.nuortenIdeat"/></a>
  64.  
  65. <li>
  66. <a href="http://www.otakantaa.fi/${locale}-FI"><@u.message "otherServices.otaKantaa"/></a>
  67.  
  68. <li>
  69. <a href="http://www.vaalit.fi/${locale}"><@u.message "otherServices.vaalit"/></a>
  70.  
  71. <li>
  72. <a href="http://www.yhdenvertaisuus.fi/${(locale == "sv")?string("vad_da_equality_fi","")}"><@u.message "otherServices.yhdenvertaisuus"/></a>
  73. </ul>
  74. </div>
  75.  
  76. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement