Last active
December 31, 2015 04:09
-
-
Save jackbillstrom/7932392 to your computer and use it in GitHub Desktop.
Basic Tictail UI
This file contains hidden or 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="sv"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Graphs</title> | |
<!-- Tictail UIKit CSS --> | |
<link rel="stylesheet" href="https://sdk.ttcdn.co/tt-uikit-0.11.0.min.css"> | |
<!-- Handgjord CSS --> | |
</head> | |
<body> | |
<div class="app-container"> | |
<header> | |
<h1>Graph</h1> | |
<nav class="navbar"> | |
<ul class="nav navbar-nav"> | |
<li id="general" data-tab="general"><a href="#navbar" class="active">Totalt</a></li> | |
<li id="orders" data-tab="orders"><a href="#navbar">Beställningar</a></li> | |
<li id="settings" data-tab="settings"><a href="#navbar">Inställningar</a></li> | |
</ul> | |
</nav> | |
</header> | |
<!-- jQuery (this is required) --> | |
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
<!-- Tictail UIKit JavaScript --> | |
<script src="https://sdk.ttcdn.co/tt-uikit-0.11.0.min.js"></script> | |
<!-- Tictail JavaScript library --> | |
<script src="https://sdk.ttcdn.co/tt.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment