| Page source: |
1: #set ($pageContainer = "container p-3 mt-3 mb-4 border shadow-sm")
2: #set ($pageClass = "internal-page")
3: #set ($showBookmark = true)
4: #set ($landing = false)
5:
6: #if ($request.getAttribute("pageContainer")) #set ($pageContainer = $request.getAttribute("pageContainer")) #end
7: #if ($request.getAttribute("pageClass")) #set ($pageClass = $request.getAttribute("pageClass")) #end
8: #if ($request.getAttribute("showBookmark") == false) #set ($showBookmark = false) #end
9: #if ($request.getAttribute("landing"))
10: #set ($landing = $request.getAttribute("landing"))
11: #set ($landing = $Boolean.parseBoolean($landing))
12: #end
13:
14: ## PICK UP OPTIONS
15: $website.include("options")
16: #set ($options = $request.getAttribute("options"))
17:
18: #set ($language = "en")
19: #if ($options.get("site_lang") != "en")
20: #set ($language = $options.get("site_lang"))
21: #end
22:
23: #if ($options.get("footer_logo_link").length() > 0)
24: $!request.setAttribute("footerLogoLink", $options.get("footer_logo_link"))
25: #end
26:
27: #set ($lightColorClass = "")
28: #if($options.get("primary_color_light") == true)
29: #set ($lightColorClass = "${lightColorClass} primary-color-light")
30: #end
31: #if($options.get("secondary_color_light") == true)
32: #set ($lightColorClass = "${lightColorClass} secondary-color-light")
33: #end
34:
35: <!doctype html>
36: <html lang="${language}" class="${pageClass} ${lightColorClass}" data-theme-2="align-b">
37: <head>
38: $!request.setAttribute("pageObj", $page)
39: $website.include("inc-head")
40: $!head
41:
42: <link rel="preconnect" href="https://fonts.googleapis.com">
43: <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
44: <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
45: <link rel="stylesheet" href="/theme.css" type="text/css" />
46: <link rel="stylesheet" href="/site.css" type="text/css" />
47: #if ($website.profile.siteLogo.getUrl().length() > 0)
48: <style>
49: :root { --site-logo-url: url(${website.profile.siteLogo.getUrl()}); }
50: </style>
51: #end
52: </head>
53: <body>
54:
55: <a href="#site-navigation" class="visually-hidden-focusable">Skip to navigation</a>
56: <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
57: <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
58:
59: #if ($website.ads.isMediaHeaderAdsEnabled())
60: <!-- 728x90/970x90/320x50 -->
61: <div id="waldo-tag-leaderboard"></div>
62: #end
63:
64: $website.include("header")
65:
66: #if (!$landing && ($website.ads.isMediaSidebarAdsEnabled() || $options.get("sidebar-ads")))
67: <aside class="container sidebar-placeholder p-0" style="height:0;">
68: <!-- 160x600 -->
69: <div id="waldo-tag-left-sidebar" style="display:none;"></div>
70: <!-- 160x600 -->
71: <div id="waldo-tag-right-sidebar" style="display:none;"></div>
72: </aside>
73: #end
74:
75: #if (!$landing && $website.ads.isMediaAdsEnabled() && !$website.ads.isMediaHeaderAdsEnabled())
76: <!-- 728x90/970x90/970x250/300x250/320x50 -->
77: <div id="waldo-tag-banner"></div>
78: #end
79:
80: <main id="site-main" class="site-main" role="main">
81: <div class="${pageContainer}">
82: $body
83: #if ($showBookmark) $website.include("share-buttons") #end
84: $wiki
85: </div>
86: </main>
87:
88: #if ($website.ads.isMediaAdsEnabled())
89: <!-- 728x90/970x90/970x250/300x250/320x50 -->
90: <div id="waldo-tag-bottom-banner"></div>
91: #end
92:
93: $website.include("footer")
94:
95: #if ($website.ads.isMediaOverlayAdsEnabled())
96: <!-- Sticky Footer --><!-- 728x90/320x50 -->
97: <div id="waldo-tag-sticky-footer"></div>
98: #end
99:
100: $!wiki.su
101: $website.usage
102: $website.include("dropoff-scripts")
103: $request.setAttribute("icl-animate-on-scroll-script", true)
104: </body>
105: </html>
|