sakrecoer-mother-web/index.html

53 lines
1.2 KiB
HTML
Raw Normal View History

---
2019-04-28 20:57:46 +02:00
title: The Mother-web of Sakrecoer
description:
image:
video_path:
2019-04-24 18:56:12 +02:00
layout: default
---
2019-04-28 21:05:20 +02:00
<div id="hero">
2019-04-28 20:57:46 +02:00
<h1>GREETINGS<br />ROBOT!</h1>
2019-04-28 19:39:21 +02:00
</div>
2019-04-28 21:05:20 +02:00
<div>
2019-04-28 19:39:21 +02:00
<p><b>Sakrecoer Uncorporated</b> Stands for independent fun-loving Activism, Art<br />&amp;
<b>Music.</b><br /><br />I push sounds, images, thoughts and passion for <b>cool robots like you.</b><br /><br />I
am funky and I deliver because<br /><b>I was born tomorrow.</b></p>
</div>
{% for post in site.categories.blog offset: 0 limit: 1 %}
2019-04-28 21:05:20 +02:00
<div>
2019-04-28 21:42:31 +02:00
{{ post.content }}
2019-04-28 19:39:21 +02:00
</div>
{% endfor %}
<script type="text/javascript">
var vid = document.getElementsByTagName("video")[0]; vid.playbackRate = 0.1;
var pauseButton = document.getElementById("video_pause");
function vidFade() {
vid.classList.add("stopfade");
}
vid.addEventListener('ended', function () {
// only functional if "loop" is removed
vid.pause();
// to capture IE10
vidFade();
});
pauseButton.addEventListener("click", function () {
vid.classList.toggle("stopfade");
if (vid.paused) {
vid.play();
pauseButton.innerHTML = "Pause Video";
}
2019-04-28 19:39:21 +02:00
else {
vid.pause();
2019-04-28 19:39:21 +02:00
pauseButton.innerHTML = "Resume Video";
}
});
</script>