Updated 31 files via CloudCannon
This commit is contained in:
parent
6965ac61a9
commit
78405b47f0
31 changed files with 175 additions and 40 deletions
60
index.html
60
index.html
|
|
@ -38,7 +38,7 @@
|
|||
<title>Yo, web-TV crib! ゲットー・スービド | 徒 setto セット</title>
|
||||
<meta name="title" content="Yo, web-TV crib! ゲットー・スービド | 徒&nbsp;setto&nbsp;セット" />
|
||||
<meta name="description" content="The music of To Setto Setto is a cypher cloud jam induced by popcorn chewing threads in obscure chat-rooms." />
|
||||
<meta name="dc.date.modified" scheme="ISO8601" content="2020-12-14T19:45:52+00:00" />
|
||||
<meta name="dc.date.modified" scheme="ISO8601" content="2020-12-15T13:11:12+00:00" />
|
||||
<meta name="robots" content="index" />
|
||||
|
||||
<link rel="canonical" href="https://setto.basspistol.com/" />
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
<meta name="dcterms.Subject" content="The music of To Setto Setto is a cypher cloud jam induced by popcorn chewing threads in obscure chat-rooms." />
|
||||
<meta name="dcterms.Title" content="Yo, web-TV crib! ゲットー・スービド" />
|
||||
<meta name="dcterms.Contributor" content="徒&nbsp;setto&nbsp;セット" />
|
||||
<meta name="dcterms.Date" content="2020-12-14" />
|
||||
<meta name="dcterms.Date" content="2020-12-15" />
|
||||
<meta name="dcterms.Description" content="The music of To Setto Setto is a cypher cloud jam induced by popcorn chewing threads in obscure chat-rooms." />
|
||||
|
||||
<!-- Facebook -->
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
<meta property="og:url" content="https://setto.basspistol.com/" />
|
||||
<meta property="og:site_name" content="徒&nbsp;setto&nbsp;セット" />
|
||||
<meta property="og:type" content="webpage" />
|
||||
<meta property="article:published_time" content="2020-12-14T19:45:52+00:00" />
|
||||
<meta property="article:published_time" content="2020-12-15T13:11:12+00:00" />
|
||||
<meta property="og:image" content="https://setto.basspistol.com/images/pages/background-setto-v2-blus.svg" />
|
||||
<!-- Twitter Card -->
|
||||
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
<link rel="icon" type="image/png" href="https://setto.basspistol.com/touch-icon.png" sizes="192x192">
|
||||
<link rel="shortcut icon" href="https://setto.basspistol.com/images/setto-logoicon.svg" type="image/png" />
|
||||
<noscript><link rel="stylesheet" href="./assets/css/noscripts-20201215.css" /></noscript>
|
||||
|
||||
<script src="./assets/js/jquery-3.5.1.min.js"></script>
|
||||
<meta name="theme-color" content=""/>
|
||||
|
||||
|
||||
|
|
@ -135,6 +135,54 @@
|
|||
|
||||
<div id="main-wrapper">
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
function generateRandomPosts()
|
||||
{
|
||||
$.getJSON("/posts.json", function(data) {
|
||||
console.log("[posts.json loaded for random posts]");
|
||||
|
||||
var postsCount = data.length;
|
||||
var posts = data;
|
||||
|
||||
var randomIndexUsed = [];
|
||||
var counter = 0;
|
||||
var numberOfPosts = 1;
|
||||
|
||||
var divRandomPosts = $("#random_posts");
|
||||
|
||||
while (counter < numberOfPosts)
|
||||
{
|
||||
var randomIndex = Math.floor(Math.random() * postsCount);
|
||||
|
||||
if (randomIndexUsed.indexOf(randomIndex) == "-1")
|
||||
{
|
||||
var postHREF = posts[randomIndex].href;
|
||||
var postTitle = posts[randomIndex].title;
|
||||
|
||||
if (counter == (numberOfPosts - 1))
|
||||
{
|
||||
divRandomPosts.append('<a class="button" href="' + postHREF + '">🔥</a>');
|
||||
}
|
||||
else
|
||||
{
|
||||
divRandomPosts.append('<a class="button" href="' + postHREF + '">🔥</a>');
|
||||
}
|
||||
|
||||
randomIndexUsed.push(randomIndex);
|
||||
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
generateRandomPosts();
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -164,7 +212,7 @@
|
|||
|
||||
<li><a href="/chat/#read" class="button">🗨️</a></li>
|
||||
|
||||
<li><a href="/unmet-dependencies/#play" class="button">🔥</a></li>
|
||||
<li id="random_posts"></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -562,7 +610,7 @@
|
|||
</div>
|
||||
<p>©2020 Basspistol | <a href="./webcreds/">Credits</a> |
|
||||
<a href="./cookies/">Cookies & Privacy</a>
|
||||
<br />This page was last updated on Monday, Dec 14, 2020</p>
|
||||
<br />This page was last updated on Tuesday, Dec 15, 2020</p>
|
||||
</small>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue