69 lines
3.1 KiB
Text
69 lines
3.1 KiB
Text
---
|
|
import SiteFooter from "./SiteFooter.astro";
|
|
import SiteNav from "./SiteNav.astro";
|
|
|
|
const {
|
|
title,
|
|
bodyClass,
|
|
pathname,
|
|
canonical,
|
|
parabolaSettings = { masonry: "0", magazine: "0", mobile: "1", fitvids: "1" },
|
|
} = Astro.props;
|
|
const parabolaSettingsScript = `var parabola_settings = ${JSON.stringify(parabolaSettings)};`;
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<slot name="head" />
|
|
<title set:html={title} />
|
|
<meta name="robots" content="max-image-preview:large" />
|
|
<link rel="stylesheet" id="content-blocks-css" href="/css/block-library.css?ver=6.6.5" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="pdfprnt_frontend-css" href="/assets/vendor/pdf/css/frontend.css?ver=2.4.0" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="parabola-fonts-css" href="/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="parabola-style-css" href="/assets/theme/parabola/style.css?ver=2.4.1" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="familyfedie-theme-css" href="/css/theme.css" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="familyfedie-site-css" href="/css/site.css" type="text/css" media="all" />
|
|
<link rel="stylesheet" id="parabola-mobile-css" href="/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1" type="text/css" media="all" />
|
|
<script is:inline type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
|
|
<script is:inline type="text/javascript" id="parabola-frontend-js-extra" set:html={parabolaSettingsScript}></script>
|
|
<script is:inline type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
|
|
{canonical && <link rel="canonical" href={canonical} />}
|
|
</head>
|
|
<body class={bodyClass}>
|
|
<div id="toTop"> </div>
|
|
<div id="wrapper" class="hfeed">
|
|
<div id="header-full">
|
|
<header id="header">
|
|
<div id="masthead">
|
|
<div id="branding" role="banner">
|
|
<img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" />
|
|
<div id="header-container">
|
|
<a href="/index.html" id="linky"></a>
|
|
</div>
|
|
<div style="clear:both;"></div>
|
|
</div>
|
|
<a id="nav-toggle"><span> </span></a>
|
|
<SiteNav pathname={pathname} />
|
|
</div>
|
|
<div style="clear:both;height:1px;width:1px;"> </div>
|
|
</header>
|
|
</div>
|
|
|
|
<slot />
|
|
|
|
<SiteFooter />
|
|
</div>
|
|
|
|
<script is:inline>
|
|
(function (body) {
|
|
"use strict";
|
|
body.className = body.className.replace(/\btribe-no-js\b/, "tribe-js");
|
|
})(document.body);
|
|
</script>
|
|
<script type="text/javascript">var cryout_global_content_width = 800;</script>
|
|
<slot name="scripts" />
|
|
</body>
|
|
</html>
|