Browse Source

added meta tags

master
Victor Giers 5 years ago
parent
commit
38a95a37b8
1 changed files with 22 additions and 8 deletions
  1. 22
    8
      index.html

+ 22
- 8
index.html View File

@@ -2,9 +2,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Under Construction</title>
<title>Coal Community . Under Construction</title>
<meta charset="UTF-8">
<meta name="author" content="Victor Giers">
<meta name="title" content="Coal Media Community">
<meta name="type" content="website" />
<meta name="description" content="Convenient open European place for collaboration on the web">
<meta name="url" content="https://coalmedia.eu/">
<meta name="image" content="https://coalmedia.eu/coal.png">
<meta name="date" content="" scheme="2019-06-01">
<script src="libraries/p5.min.js"></script>

@@ -61,7 +66,7 @@

function setup() {
canvas = createCanvas(window.innerWidth, window.innerHeight);
bgimg = loadImage("potemkin.png");
bgimg = loadImage("potemkin.jpg");
if(hochkant()) startSmall = true;
imageMode(CENTER);
noStroke();
@@ -162,9 +167,7 @@

//snowflakes
let t = frameCount / 60;
for (let i = 0; i < random(5); i++) {
snowflakes.push(new snowflake());
}
snowflakes.push(new snowflake());
for (let flake of snowflakes) {
flake.update(t);
flake.display();
@@ -187,7 +190,7 @@
this.radius = sqrt(random(pow(width / 2, 2)));

this.update = function(time) {
let w = 0.6;
let w = 0.4;
let angle = w * time + this.initialangle;
this.posX = width / 2 + this.radius * sin(angle);
this.posY += pow(this.size, 0.5);
@@ -211,15 +214,16 @@
</head>
<body>
<div id="overlay">
<h3>Coal Media Community</h3>
<p>
This place is going to be a hub for <b>collaborative work</b> in the fields of <b>media art</b> and <b>design</b> regarding <b>knowledge</b> and <b>social interaction</b> on the <b>internet</b>.<br>
The community is based on <b>European standards</b>, <b>the whole world is invited</b> to collaborate.<br>
It is registered at <a href="https://www.manitu.de/" target="_blank"><b>Manitu</b></a>, a web host service based in <b>Saarland, Germany</b>.<br><br>
It is registered and hosted at <a href="https://www.manitu.de/" target="_blank"><b>Manitu</b></a>, a web host service based in <b>Saarland, Germany</b>.<br><br>
<b>We'd love you to get in contact with us!</b><br><br>
<h3><a href="https://discord.gg/nGDYYKE">Discord invitation</a></h3>
</p>
<p>
There's a <a href="http://coal.ddns.net:3000/coal/coalmedia.eu">git</a> for this website, rudimentary hosted on <a href="https://giers.io">my</a> Raspberry Pi<br>
There's a <a href="http://coal.ddns.net:3000/ember/coalmedia.eu">git</a> for this website.<br>
Following links are not functioning properly yet and only here for construction purpose.
<ul>
<li><a href="chat">Chat</a></li>
@@ -227,6 +231,16 @@
<li><a href="git">Git</a></li>
</ul>
</p>
<h3>Impressum</h3>
<p>
<a href="impressum/Victor Giers.vcf">Download vCard</a><br>
Victor Giers<br>
Badmauer 14<br>
73525 Schwäbisch Gmünd<br>
+49 160 977 0 7979<br>
<a href="mailto:mail@giers.io">mail@giers.io</a><br>
<a href="https://giers.io/">https://giers.io/</a>
</p>
</div>
</body>
</html>

Loading…
Cancel
Save