Updated 47 files via CloudCannon
This commit is contained in:
parent
e9b3180f96
commit
26846ebee9
45 changed files with 1678 additions and 1669 deletions
|
|
@ -80,16 +80,16 @@
|
|||
<meta property="og:url" content="https://setto.basspistol.com/granny-is-a-cyborg-now/" />
|
||||
<meta property="og:site_name" content="徒&nbsp;setto&nbsp;セット" />
|
||||
<meta property="og:type" content="music:album" />
|
||||
<meta property="og:audio" content="https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.mp3" /><meta property="og:audio" content="https://media.basspistol.com/setto.basspistol.com/cyber-grany/2-grand-ma-is-a-cyborg-now.mp3" />
|
||||
<meta property="og:audio" content="/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.mp3" /><meta property="og:audio" content="/media/cyber-grany/2-grand-ma-is-a-cyborg-now.mp3" />
|
||||
<meta property="article:published_time" content="2019-12-12T03:03:00+00:00" />
|
||||
<meta property="og:image" content="https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg" />
|
||||
<meta property="og:image" content="/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg" />
|
||||
|
||||
<!-- Twitter Card -->
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Cyber Grany | 徒&nbsp;setto&nbsp;セット" />
|
||||
<meta name="twitter:description" content="Listen and to a release by 徒 Setto セット, 徒 setto セット named "Cyber Grany" and support your remote artist!" />
|
||||
<meta name="twitter:image" content="https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg" />
|
||||
<meta name="twitter:image" content="/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg" />
|
||||
|
||||
|
||||
|
||||
|
|
@ -105,12 +105,12 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
|
||||
<link rel="stylesheet" href="../assets/css/all.min.css" />
|
||||
<link rel="stylesheet" href="../assets/css/colors-20201215.css" />
|
||||
<link rel="stylesheet" href="../assets/css/main-20201215.css" />
|
||||
<link rel="stylesheet" href="../assets/css/colors-20201225.css" />
|
||||
<link rel="stylesheet" href="../assets/css/main-20201225.css" />
|
||||
<link rel="apple-touch-icon" href="https://setto.basspistol.com/apple-touch-icon.png">
|
||||
<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>
|
||||
<noscript><link rel="stylesheet" href="../assets/css/noscripts-20201225.css" /></noscript>
|
||||
<script src="../assets/js/jquery-3.5.1.min.js"></script>
|
||||
<meta name="theme-color" content=""/>
|
||||
|
||||
|
|
@ -129,159 +129,99 @@
|
|||
|
||||
|
||||
|
||||
<header class="hero" style="background-image: url(../images/posts/1-grandma-got-the-ssh-keys.jpeg);">
|
||||
|
||||
|
||||
<header class="hero" id="play" style="background-image: url(../images/posts/1-grandma-got-the-ssh-keys.jpeg);">
|
||||
<div class="imagecontainer">
|
||||
<h4>Granny is a cyborg now</h4>
|
||||
</div>
|
||||
<div class="splash">
|
||||
<div class="splash-logo">
|
||||
<div class="album-player">
|
||||
|
||||
|
||||
<a href="/"><img src="/images/setto-logoicon.svg" width="240px" alt="徒 setto セット Logo" /></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="description">
|
||||
|
||||
<h1>Granny is a cyborg now</h1>
|
||||
<p>Jazzy Cybersoul with a hint of 303 baselines.</p>
|
||||
|
||||
|
||||
<p><a href="#play" class="button">🔊 Listen</a></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
<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>
|
||||
<section id="play">
|
||||
<div class="album-player">
|
||||
|
||||
<!-- HERE BEGINS MADNESS -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="player-wrap">
|
||||
|
||||
<div id="plwrap">
|
||||
<h2>Track list</h2>
|
||||
<ul id="plList">
|
||||
|
||||
<li >
|
||||
|
||||
|
||||
<div class="player-wrap">
|
||||
<h1 class="shadow">Granny is a cyborg now</h1>
|
||||
<p class="shadow">Jazzy Cybersoul with a hint of 303 baselines.</p>
|
||||
<div id="plwrap">
|
||||
<h4> </h4>
|
||||
<h4>Track list</h4>
|
||||
<ul id="plList">
|
||||
|
||||
<li >
|
||||
<div class="plItem">
|
||||
<div class="plNum">1.</div>
|
||||
<div class="plTitle">Grandma got the SSH keys (Insutrmental)</div>
|
||||
<div class="plLength">
|
||||
3:22
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li >
|
||||
<div class="plItem">
|
||||
<div class="plNum">2.</div>
|
||||
<div class="plTitle">Grand'ma Is A Cyborg Now</div>
|
||||
<div class="plLength">
|
||||
3:19
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="noJSalbum">
|
||||
<div class="coverartwrapper">
|
||||
<div class="coverartwrapped" style="background-image: url(/images/posts/1-grandma-got-the-ssh-keys.jpeg);"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="plItem">
|
||||
<div class="plNum">1.</div>
|
||||
<div class="plTitle">Grandma got the SSH keys (Insutrmental)</div>
|
||||
<div class="plTitle"><a href="/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.mp3" target="_blank" rel="noopener">Grandma got the SSH keys (Insutrmental) </a></div>
|
||||
<div class="plLength">
|
||||
3:22
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li >
|
||||
|
||||
|
||||
<div class="plItem">
|
||||
<div class="plNum">2.</div>
|
||||
<div class="plTitle">Grand'ma Is A Cyborg Now</div>
|
||||
<div class="plTitle"><a href="/media/cyber-grany/2-grand-ma-is-a-cyborg-now.mp3" target="_blank" rel="noopener">Grand'ma Is A Cyborg Now </a></div>
|
||||
<div class="plLength">
|
||||
3:19
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<h2 style="text-align: center;"><a href="#support" class="button">🙏 Support</a></h2>
|
||||
</div>
|
||||
<div class="noJSalbum">
|
||||
<div class="coverartwrapper">
|
||||
<div class="coverartwrapped" style="background-image: url(/images/posts/1-grandma-got-the-ssh-keys.jpeg);"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="plItem">
|
||||
<div class="plNum">1.</div>
|
||||
<div class="plTitle"><a href="https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.mp3" target="_blank" rel="noopener">Grandma got the SSH keys (Insutrmental) </a></div>
|
||||
<div class="plLength">
|
||||
3:22
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="coverart" style="text-align: center;">
|
||||
<div class="coverartwrapper">
|
||||
<div id="npImage" class="coverartwrapped"></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="plItem">
|
||||
<div class="plNum">2.</div>
|
||||
<div class="plTitle"><a href="https://media.basspistol.com/setto.basspistol.com/cyber-grany/2-grand-ma-is-a-cyborg-now.mp3" target="_blank" rel="noopener">Grand'ma Is A Cyborg Now </a></div>
|
||||
<div class="plLength">
|
||||
3:19
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="coverart">
|
||||
<div class="coverartwrapper">
|
||||
<div id="npImage" class="coverartwrapped"></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="author">
|
||||
<div class="bio">
|
||||
<p class="date">
|
||||
Published the
|
||||
<time datetime="2019-12-12 03:03:00 +0000">
|
||||
|
||||
|
||||
<div id="author">
|
||||
<div class="bio">
|
||||
<p class="date">
|
||||
Published the
|
||||
<time datetime="2019-12-12 03:03:00 +0000">
|
||||
|
||||
12:th
|
||||
of
|
||||
|
|
@ -290,21 +230,69 @@
|
|||
|
||||
2019
|
||||
</time>
|
||||
</p>
|
||||
<h6>
|
||||
Share this page:
|
||||
</h6>
|
||||
<ul>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to facebook" alt="Share to facebook" href="https://touch.facebook.com/sharer.php?u=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&quote=Jazzy Cybersoul with a hint of 303 baselines.%20By%20徒&nbsp;setto&nbsp;セット%20via%20https://setto.basspistol.com" class="icon smaller fab fa-facebook-f"><span class="label">Facebook</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to twitter" alt="Share to twitter" href="https://twitter.com/share?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&text=Jazzy Cybersoul with a hint of 303 baselines.%20via%20@ToSettoSetto%20&hashtags=#basspistol" class="icon smaller fab fa-twitter"><span class="label">Twitter</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to telegram" alt="Share to telgram" href="https://telegram.me/share/url?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&text=Jazzy Cybersoul with a hint of 303 baselines.%20via%20@tosettosetto" class="icon smaller fab fa-telegram"><span class="label ">Telegram</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to reddit" alt="Share to reddit" href="https://reddit.com/submit/?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&title=Jazzy Cybersoul with a hint of 303 baselines.%20By%20徒&nbsp;setto&nbsp;セット" class="icon smaller fab fa-reddit"><span class="label">Reddit</span></a>
|
||||
</ul>
|
||||
</div>
|
||||
</p>
|
||||
<h6>
|
||||
Share this release:
|
||||
</h6>
|
||||
<ul>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to facebook" alt="Share to facebook" href="https://touch.facebook.com/sharer.php?u=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&quote=Jazzy Cybersoul with a hint of 303 baselines.%20By%20徒&nbsp;setto&nbsp;セット%20via%20https://setto.basspistol.com" class="icon smaller fab fa-facebook-f"><span class="label">Facebook</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to twitter" alt="Share to twitter" href="https://twitter.com/share?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&text=Jazzy Cybersoul with a hint of 303 baselines.%20via%20@ToSettoSetto%20&hashtags=#basspistol" class="icon smaller fab fa-twitter"><span class="label">Twitter</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to telegram" alt="Share to telgram" href="https://telegram.me/share/url?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&text=Jazzy Cybersoul with a hint of 303 baselines.%20via%20@tosettosetto" class="icon smaller fab fa-telegram"><span class="label ">Telegram</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to reddit" alt="Share to reddit" href="https://reddit.com/submit/?url=https://setto.basspistol.com/granny-is-a-cyborg-now/?pk_campaign=homeshare&title=Jazzy Cybersoul with a hint of 303 baselines.%20By%20徒&nbsp;setto&nbsp;セット" class="icon smaller fab fa-reddit"><span class="label">Reddit</span></a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<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>
|
||||
|
||||
<!-- HERE BEGINS MADNESS -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="info">
|
||||
<div class="container">
|
||||
<p>My grandmother, 93, added me on social media yesterday. So I called her. Long-chat good talk. TL;DR Damn what a woman! She told me she had a roll-walker. I said “we’re in the future now Grandma, you’re a cyborg, half machine!”</p>
|
||||
|
|
@ -351,7 +339,7 @@
|
|||
|
||||
|
||||
<section class="track-picker">
|
||||
<div class="full-image" style="background-image:url(https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg);">
|
||||
<div class="full-image" style="background-image:url(/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-.jpeg);">
|
||||
</div>
|
||||
<div>
|
||||
<h2>Grandma got the SSH keys (Insutrmental)</h2>
|
||||
|
|
@ -367,7 +355,7 @@
|
|||
|
||||
|
||||
<section class="track-picker">
|
||||
<div class="full-image" style="background-image:url(https://media.basspistol.com/setto.basspistol.com/cyber-grany/2-grand-ma-is-a-cyborg-now.jpeg);">
|
||||
<div class="full-image" style="background-image:url(/media/cyber-grany/2-grand-ma-is-a-cyborg-now.jpeg);">
|
||||
</div>
|
||||
<div>
|
||||
<h2>Grand'ma Is A Cyborg Now</h2>
|
||||
|
|
@ -472,14 +460,14 @@ A marvelous invention!
|
|||
"track": 1,
|
||||
"name": "Grandma got the SSH keys (Insutrmental)",
|
||||
"length": "3:22",
|
||||
"file": "https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-",
|
||||
"image": "https://media.basspistol.com/setto.basspistol.com/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-"
|
||||
"file": "/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-",
|
||||
"image": "/media/cyber-grany/1-grandma-got-the-ssh-keys-insutrmental-"
|
||||
},{
|
||||
"track": 2,
|
||||
"name": "Grand'ma Is A Cyborg Now",
|
||||
"length": "3:19",
|
||||
"file": "https://media.basspistol.com/setto.basspistol.com/cyber-grany/2-grand-ma-is-a-cyborg-now",
|
||||
"image": "https://media.basspistol.com/setto.basspistol.com/cyber-grany/2-grand-ma-is-a-cyborg-now"
|
||||
"file": "/media/cyber-grany/2-grand-ma-is-a-cyborg-now",
|
||||
"image": "/media/cyber-grany/2-grand-ma-is-a-cyborg-now"
|
||||
}],
|
||||
trackCount = tracks.length,
|
||||
npAction = $('#npAction'),
|
||||
|
|
@ -630,23 +618,26 @@ A marvelous invention!
|
|||
<li><a href="../">🏡 Home</a></li>
|
||||
|
||||
|
||||
<li><a href="/discography/" >💽 Discog</a></li>
|
||||
<li><a href="#support" >🌮 Support</a></li>
|
||||
|
||||
<li><a href="/log/" >📰 Log</a></li>
|
||||
<li><a href="/#read" >💽 Music</a></li>
|
||||
|
||||
<li><a href="https://t.basspistol.org/setto" target="_blank" rel="noopener"
|
||||
>📰 Log</a></li>
|
||||
|
||||
<li><a href="https://v.basspistol.org/accounts/setto/video-channels" target="_blank" rel="noopener"
|
||||
>📺 Video</a></li>
|
||||
>📹 Video</a></li>
|
||||
|
||||
<li><a href="/about/" >🐿 About</a></li>
|
||||
<li><a href="/about/" >㊙️ About</a></li>
|
||||
|
||||
<li><a href="/links/" >🔗 Links</a></li>
|
||||
|
||||
<li><a href="/chat/#read" >📢 Chat</a></li>
|
||||
<li><a href="/chat/#read" >👋 Chat</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div><a href="#main-wrapper"><img src="../images/setto-logoicon.svg" alt="徒 setto セット Logo" /></a></div>
|
||||
<div><a href="#main-wrapper"><img src="../images/setto-logoicon-footer.svg" alt="徒 setto セット Logo" /></a></div>
|
||||
|
||||
<small>
|
||||
<div style="text-align: center;">
|
||||
|
|
@ -705,19 +696,23 @@ A marvelous invention!
|
|||
|
||||
|
||||
|
||||
<li><a href="../discography/" onclick="removeBlur()" class="button">💽 Discog</a></li>
|
||||
<li><a href="#support" target="_blank" rel="noopener" onclick="removeBlur()" class="button">🌮 Support</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="../log/" onclick="removeBlur()" class="button">📰 Log</a></li>
|
||||
<li><a href="../#read" onclick="removeBlur()" class="button">💽 Music</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://v.basspistol.org/accounts/setto/video-channels" target="_blank" rel="noopener" onclick="removeBlur()" class="button">📺 Video</a></li>
|
||||
<li><a href="https://t.basspistol.org/setto" target="_blank" rel="noopener" onclick="removeBlur()" class="button">📰 Log</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="../about/" onclick="removeBlur()" class="button">🐿 About</a></li>
|
||||
<li><a href="https://v.basspistol.org/accounts/setto/video-channels" target="_blank" rel="noopener" onclick="removeBlur()" class="button">📹 Video</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="../about/" onclick="removeBlur()" class="button">㊙️ About</a></li>
|
||||
|
||||
|
||||
|
||||
|
|
@ -725,7 +720,7 @@ A marvelous invention!
|
|||
|
||||
|
||||
|
||||
<li><a href="../chat/#read" onclick="removeBlur()" class="button">📢 Chat</a></li>
|
||||
<li><a href="../chat/#read" onclick="removeBlur()" class="button">👋 Chat</a></li>
|
||||
|
||||
|
||||
|
||||
|
|
@ -877,7 +872,7 @@ _paq.push(['enableLinkTracking']);
|
|||
|
||||
|
||||
|
||||
<script src="../assets/js/set-20201215.js"></script>
|
||||
<script src="../assets/js/set-20201225.js"></script>
|
||||
|
||||
|
||||
<div class="fullscreen-bg">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue