removing old shit
This commit is contained in:
parent
2b5bd4fa0e
commit
dcb26f14ce
13 changed files with 48 additions and 2141 deletions
121
index.html
121
index.html
|
|
@ -1,90 +1,65 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<a id="about" href="about/">About</a>
|
||||
<a id="log" href="blog/">Log</a>
|
||||
<a id="music" href="music/">Music</a>
|
||||
<a id="discog" href="discography/">Discog</a>
|
||||
<a id="links" href="links/">Links</a>
|
||||
<a id="about" href="about/">About</a>
|
||||
<a id="log" href="blog/">Log</a>
|
||||
<a id="music" href="music/">Music</a>
|
||||
<a id="discog" href="discography/">Discog</a>
|
||||
<a id="links" href="links/">Links</a>
|
||||
|
||||
|
||||
<div id="a">
|
||||
<h1 style="font-size:144px;letter-spacing:-1px;color:#fff;">GREETINGS<br />ROBOT!</h1>
|
||||
</div>
|
||||
<div id="a">
|
||||
<h1 style="font-size:144px;letter-spacing:-1px;color:#fff;">GREETINGS<br />ROBOT!</h1>
|
||||
</div>
|
||||
|
||||
<div id="ab"></div>
|
||||
<div id="ab"></div>
|
||||
|
||||
<div id="abc">
|
||||
<p><b>Sakrecoer Uncorporated</b> Stands for independent fun-loving Activism, Art<br />&
|
||||
<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>
|
||||
<div id="abc">
|
||||
<p><b>Sakrecoer Uncorporated</b> Stands for independent fun-loving Activism, Art<br />&
|
||||
<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 %}
|
||||
<div id="abcd">
|
||||
{{ post.content | strip_html | truncatewords: 250 }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for post in site.categories.blog offset: 0 limit: 1 %}
|
||||
<div id="abcd">
|
||||
{{ post.content | strip_html | truncatewords: 250 }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
<div id="abcde"></div>
|
||||
<div id="abcde"></div>
|
||||
<div id="abcdef"></div>
|
||||
<button id="video_pause">Pause<br />Video</button>
|
||||
|
||||
<div id="abcdef"></div>
|
||||
<video autoplay loop poster="{{ site.baseurl }}/assets/img/bg/frontpage.jpg" id="bgvid">
|
||||
<source src="{{ site.baseurl }}/assets/vi/0001-0076.webm" type="video/webm">
|
||||
<source src="{{ site.baseurl }}/assets/vi/0001-0076.mp4" type="video/mp4">
|
||||
</video>
|
||||
|
||||
<button id="video_pause">Pause<br />Video</button>
|
||||
<script type="text/javascript">
|
||||
|
||||
var vid = document.getElementsByTagName("video")[0]; vid.playbackRate = 0.1;
|
||||
var pauseButton = document.getElementById("video_pause");
|
||||
|
||||
<video autoplay loop poster="{{ site.baseurl }}/assets/img/bg/frontpage.jpg" id="bgvid">
|
||||
<source src="{{ site.baseurl }}/assets/vi/0001-0076.webm" type="video/webm">
|
||||
<source src="{{ site.baseurl }}/assets/vi/0001-0076.mp4" type="video/mp4">
|
||||
</video>
|
||||
function vidFade() {
|
||||
vid.classList.add("stopfade");
|
||||
}
|
||||
|
||||
vid.addEventListener('ended', function () {
|
||||
// only functional if "loop" is removed
|
||||
vid.pause();
|
||||
// to capture IE10
|
||||
vidFade();
|
||||
});
|
||||
|
||||
|
||||
<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");
|
||||
|
||||
pauseButton.addEventListener("click", function () {
|
||||
vid.classList.toggle("stopfade");
|
||||
if (vid.paused) {
|
||||
vid.play();
|
||||
pauseButton.innerHTML = "Pause Video";
|
||||
}
|
||||
|
||||
vid.addEventListener('ended', function () {
|
||||
|
||||
// only functional if "loop" is removed
|
||||
|
||||
else {
|
||||
vid.pause();
|
||||
|
||||
// to capture IE10
|
||||
|
||||
vidFade();
|
||||
|
||||
});
|
||||
|
||||
pauseButton.addEventListener("click", function () {
|
||||
|
||||
vid.classList.toggle("stopfade");
|
||||
|
||||
if (vid.paused) {
|
||||
|
||||
vid.play();
|
||||
|
||||
pauseButton.innerHTML = "Pause Video";
|
||||
|
||||
} else {
|
||||
|
||||
vid.pause();
|
||||
|
||||
pauseButton.innerHTML = "Resume Video";
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
pauseButton.innerHTML = "Resume Video";
|
||||
}
|
||||
});
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue