yes
This commit is contained in:
commit
2aef055057
37 changed files with 975 additions and 0 deletions
85
pronouns.php
Normal file
85
pronouns.php
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
<?php
|
||||
$words = array(
|
||||
"Pronouns" => array(
|
||||
"poss/possum" => 2,
|
||||
"she/her" => 1,
|
||||
"they/them" => 1,
|
||||
"it/its" => 1,
|
||||
"any neopronouns" => 1,
|
||||
"any/all" => 0,
|
||||
"he/him" => -1
|
||||
),
|
||||
"General Nouns" => array(
|
||||
"possum" => 2,
|
||||
"woman" => 1,
|
||||
"girl" => 1,
|
||||
"enby" => 1,
|
||||
"lady" => 1,
|
||||
"person" => 0,
|
||||
"boy" => -1,
|
||||
"bro" => -1,
|
||||
"dude" => -1,
|
||||
"man" => -1,
|
||||
),
|
||||
"Nouns (Close)" => array(
|
||||
"friend" => 2,
|
||||
"wife" => 2,
|
||||
"partner" => 2,
|
||||
"girlfriend" => 2,
|
||||
"darling" => 2,
|
||||
"beloved" => 2,
|
||||
"husband" => -1,
|
||||
"boyfriend" => -1,
|
||||
),
|
||||
"Adjectives" => array(
|
||||
"pretty" => 2,
|
||||
"smart" => 2,
|
||||
"cute" => 2,
|
||||
"sexy" => 1,
|
||||
"hot" => 1,
|
||||
"nice" => 1,
|
||||
"handsome" => -1,
|
||||
)
|
||||
);
|
||||
|
||||
$tbl = array(
|
||||
2 => "yes!!",
|
||||
1 => "sure",
|
||||
0 => "meh",
|
||||
-1 => "no",
|
||||
)
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Yuki</title>
|
||||
<link rel="shortcut icon" href="img/yuki.png" type="image/jpg">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("top.php"); ?>
|
||||
<div class="container">
|
||||
<?php include("header.php"); ?>
|
||||
<?php foreach($words as $type => $items) { ?>
|
||||
<div class="section">
|
||||
<h2><?=$type?></h2>
|
||||
<ul>
|
||||
<?php foreach($items as $word => $value) { ?>
|
||||
<li><?=$word?> - <?=$tbl[$value]?></li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div class="section footer">
|
||||
Copyleft <span class="copyleft">©</span> Yuki <?=date("Y")?>
|
||||
</div>
|
||||
</div>
|
||||
<script defer src="js/script.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue