Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
todo/learn.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
41 lines (34 sloc)
1.56 KB
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>TodoMVC - Learn</title> | |
<meta name="description" | |
content="Helping you select an MV* framework - Todo apps for Backbone.js, Ember.js, AngularJS and many more"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="site-assets/main.css"> | |
</head> | |
<body class="learn-page"> | |
<aside class="learn"> | |
<nav id="menu-drawer" class="list"></nav> | |
</aside> | |
<a href="https://github.com/tastejs/todomvc"> | |
<img style="position: absolute; top: 0; right: 0; border: 0;" | |
src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" | |
alt="Fork me on GitHub" | |
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"> | |
</a> | |
<header class="container"> | |
<div class="row"> | |
<img class="logo" src="site-assets/logo.svg" width="400" alt="TodoMVC" style="margin-top: 0;"> | |
<p>Helping you <strong>select</strong> an MV* framework</p> | |
</div> | |
</header> | |
<div id="content" class="main"></div> | |
<script src="bower_components/jquery/dist/jquery.min.js"></script> | |
<script src="site-assets/lodash.custom.js"></script> | |
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> | |
<script src="site-assets/learn.js"></script> | |
</body> | |
</html> |