-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5524d84
commit ba7da31
Showing
6 changed files
with
171 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="gr__getbootstrap_com" style="overflow: auto;"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
|
||
<!-- <div w3-include-html="header.html"></div> --> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content="Dusty and the Sardines, a kiwi family and their travels around NZ in their beloved bus Dusty."> | ||
|
||
<meta name="author" content="Paul Clarke"> | ||
<title>Tinkering & Updates | Dusty and the Sardines</title> | ||
|
||
<!-- favicon --> | ||
<link rel="apple-touch-icon-precomposed" href="/bus-15-152-260672.png"> | ||
<meta name="msapplication-TileColor" content="#ffffff" /> | ||
<meta name="msapplication-TileImage" content="/bus-15-144-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/bus-15-152-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/bus-15-144-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/bus-15-120-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/bus-15-114-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/bus-15-72-260672.png"> | ||
<link rel="apple-touch-icon-precomposed" href="/bus-15-57-260672.png"> | ||
<link rel="icon" href="/bus-15-32-260672.png" sizes="32x32"> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon" /> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151376230-1"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'UA-151376230-1'); | ||
</script> | ||
|
||
<!-- Bootstrap core --> | ||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> | ||
<link href="./bus-files/bootstrap.min.css" rel="stylesheet"> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> | ||
|
||
<!-- Custom styles for this template --> | ||
<link href="./bus-files/cover.css" rel="stylesheet"> | ||
<link href="./bus-files/navigation.css" rel="stylesheet"> | ||
<link href="./bus-files/member-tile.css" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700,900&display=swap" rel="stylesheet"> | ||
|
||
<!-- gallery --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.8.1/baguetteBox.min.css"> | ||
<link rel="stylesheet" href="./bus-files/fluid-gallery.css"> | ||
<script src="./bus-files/scroller.js"></script> | ||
|
||
|
||
<!-- feather icons --> | ||
<script src="./feather/feather.min.js"></script> | ||
|
||
<!-- include nav --> | ||
<script> | ||
function includeHTML() { | ||
var z, i, elmnt, file, xhttp; | ||
/*loop through a collection of all HTML elements:*/ | ||
z = document.getElementsByTagName("*"); | ||
for (i = 0; i < z.length; i++) { | ||
elmnt = z[i]; | ||
/*search for elements with a certain atrribute:*/ | ||
file = elmnt.getAttribute("w3-include-html"); | ||
if (file) { | ||
/*make an HTTP request using the attribute value as the file name:*/ | ||
xhttp = new XMLHttpRequest(); | ||
xhttp.onreadystatechange = function() { | ||
if (this.readyState == 4) { | ||
if (this.status == 200) {elmnt.innerHTML = this.responseText;} | ||
if (this.status == 404) {elmnt.innerHTML = "Page not found.";} | ||
/*remove the attribute, and call this function once more:*/ | ||
elmnt.removeAttribute("w3-include-html"); | ||
includeHTML(); | ||
} | ||
} | ||
xhttp.open("GET", file, true); | ||
xhttp.send(); | ||
/*exit the function:*/ | ||
return; | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
|
||
<body class="projects-page" data-gr-c-s-loaded="true" screen_capture_injected="true"> | ||
<div role="main" class="darktheme overlay bg fade-in-image image-on-bottom" style="background: url(https://picsum.photos/id/527/1400/1400);"> | ||
<div w3-include-html="header.html" class="header header_shadow"></div> | ||
|
||
<div class="container section"> | ||
<div class="row justify-content-center text-center"> | ||
<div class="sm-col-12 col-8"> | ||
<h1 class="page-heading">Tinkering & updates</h1> | ||
<p class="lead">Notes about the repairs and changes we make to our bus Dusty to suit the needs of our growing family.</p> | ||
<!-- <p>Check out some of our bus inspiration <a data-pin-do="buttonFollow" href="https://www.pinterest.nz/clarkepaul/bus-world/">On Pintrest</a></p> --> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="menu-wrapper2"> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2019.html">2019</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2020.html">2020</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2021.html">2021</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2022.html">2022</a> | ||
<span class="btn btn-special btn-lg menu-wrapper2-link active">2023</span> | ||
</div> | ||
|
||
<div class="container tz-gallery projects-posts"> | ||
<div id="sep22" class="row section"> | ||
<div class="col-sm-12 col-md-2"> | ||
<p class="date-outside"><small>Sep 2022</small></p> | ||
</div> | ||
|
||
<div class="col-sm-12 col-md-8"> | ||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<h2>Title</h2> | ||
<p>Something...</p> | ||
</div> | ||
</div> | ||
<br /> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
<div class="menu-wrapper2 menu-wrapper2-bottom"> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2019.html">2019</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2020.html">2020</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2021.html">2021</a> | ||
<a class="btn btn-special btn-lg menu-wrapper2-link " href="projects2021.html">2022</a> | ||
<span class="btn btn-special btn-lg menu-wrapper2-link active">2023</span> | ||
</div> | ||
|
||
<div class="large-spacer"> | ||
|
||
</div> | ||
|
||
|
||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.8.1/baguetteBox.min.js"></script> | ||
<script> | ||
baguetteBox.run('.tz-gallery'); | ||
</script> | ||
|
||
<script> | ||
includeHTML(); | ||
</script> | ||
|
||
<!-- Pintrest links --> | ||
<script async defer src="//assets.pinterest.com/js/pinit.js"></script> | ||
<!-- Pintrest end --> | ||
</body> | ||
</html> |