Created
January 29, 2019 05:51
-
-
Save Minikloon/775072fae47d36e595f0c99f9601e00f to your computer and use it in GitHub Desktop.
Guild site .twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mini Squid</title> | |
<meta name="description" content="Mini Squid"> | |
<meta name="author" content="Minikloon"> | |
<link rel="stylesheet" href="theme.css"> | |
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="in-the-box"> | |
<!-- <h1>Mini Squid</h1>--> | |
<img src="header.jpg" id="header"> | |
<div id="content"> | |
<p>To join the guild, Tweet <a href="https://twitter.com/Minikloon">@Minikloon</a> with your best drawing of a rainbow.</p> | |
<p>Please include your Minecraft username and leave your current guild.</p> | |
</div> | |
<h2>Hall of Fame</h2> | |
<div class="gallery"> | |
{%- for image in images %} | |
<a href="{{ image.url }}" class="gallery-a"> | |
<figure> | |
<img src="{{ image.thumbnailUrl }}" class="gallery-img"> | |
</figure> | |
</a> | |
{%- endfor %} | |
</div> | |
<img src="hypixel_logo.png" title="A Hypixel Guild" class="logo"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment