Skip to content

Instantly share code, notes, and snippets.

@wschenk
Created February 4, 2020 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wschenk/0c377459badb2ce1df3676879f0cb185 to your computer and use it in GitHub Desktop.
Save wschenk/0c377459badb2ce1df3676879f0cb185 to your computer and use it in GitHub Desktop.
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>This is my title</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 text-gray-900">
<div class="bg-blue-500 pt-16 pb-20 shadow-lg">
<img src="logo.svg" class="mx-auto h-10 w-auto">
</div>
<div class="flex">
<div class="w-64 p-4">
<a href="#" class="block">Login</a>
<a href="#" class="block pt-4">Directory</a>
<a href="#" class="block pt-4">Profile</a>
</div>
<div id="root" class="w-full"></div>
</div>
<template id="login">
<button class="m-4 px-4 py-2 bg-blue-500 text-gray-100 rounded">Login</button>
</template>
<template id="person">
<div class="w-64 mt-20 border-solid border border-gray-200 rounded-lg">
<img src="face.jpg" class="h-32 w-32 -mt-16 ml-16 shadow-xl border-2 border-gray-200 rounded-full">
<h1 class="text-center text-xl font-semibold tracking-light">Will Schenk</h1>
<h2 class="text-center text-md font-light">COO, CoFounder</h2>
<a class="text-center block mt-2 font-light" href="mailto:will@happyfuncorp.com">will</a>
</div>
</template>
<template id="profile">
<img src="face.jpg" class="mx-auto h-32 w-32 rounded-full -mt-16 shadow-xl border-solid border-2 border-gray-300">
<div class="mx-auto max-w-lg">
<h1 class="pt-4 text-center text-4xl font-semibold tracking-tight">Will Schenk</h1>
<h2 class="pb-4 text-center text-xl font-light">COO, CoFounder</h2>
<p class="leading-relaxed text-justify">
Will focuses on overall internal management of HappyFunCorp,
which involves making sure that people are happy and productive,
that clients are happy with their projects. This involves
meetings and a lot of psycology. It's rewarding when
the company is growing and thriving, but also very different
from time spent immersed in the fun of computers.
The career grew out of the hobby, and now that my daily job
is different from the hobby I can go back to being a
hobby programmer. Coding for the pleasure of it.
</p>
</div>
</template>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment