Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions ideagenerator/data.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
category_names = [
'template',
'genre',
'genre_modifier',
'perspective',
'group_name',
'character',
'character_description',
'character_description_post',
'goal_prefix',
'goal',
'setting',
'setting_description',
'theme',
'mood',
'wildcard'
'template',
'genre',
'genre_modifier',
'perspective',
'group_name',
'character',
'character_description',
'character_description_post',
'goal_prefix',
'goal',
'setting',
'setting_description',
'theme',
'mood',
'wildcard'
];

data = `
Expand Down Expand Up @@ -457,4 +457,4 @@ with destructible terrain
with a built-in level editor
with a [funny, moving] story
#end
`;
`;
8 changes: 7 additions & 1 deletion ideagenerator/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<!-- Encoding (UTF-8) -->
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<!-- Replace this with your website description -->
<meta name="description" content="A game idea generator">
<!-- Add keywords here -->
<meta name="keywords" content="">
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="stylesheet.css">
<script src="data.js"></script>
Expand All @@ -21,4 +27,4 @@
<a target="_blank" href="https://www.youtube.com/c/SebastianLague"><img src="Resources/ytbanner.png" width="200" height="50" title="YouTube channel" alt="YouTube channel"></a>
</div>
</body>
</html>
</html>
29 changes: 18 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
<!DOCTYPE html>
<html>
<html lang='en-us'>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="styles.css">
<!-- Encoding (UTF-8) -->
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<!-- Add your website description here -->
<meta name="description" content="">
<!-- Add keywords here -->
<meta name="keywords" content="">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css" type="text/CSS">
<!-- Add title here -->
<title></title>
</head>
<body>

<h1> Hello! </h1>
<p> This site is under construction </p>

<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/4QOcCGI6xOU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>


<div id='content'>
<h1>Hello!</h1>
<p>This site is under construction</p>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/4QOcCGI6xOU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

body {
background-color: #222222;
text-align: center;
}

h1 {
Expand Down