Skip to content

Commit

Permalink
skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
choochburger committed Feb 8, 2015
1 parent d4c504c commit 422a55a
Show file tree
Hide file tree
Showing 17 changed files with 7,150 additions and 0 deletions.
470 changes: 470 additions & 0 deletions css/bootstrap-theme.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/bootstrap-theme.css.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions css/bootstrap-theme.min.css

Large diffs are not rendered by default.

6,332 changes: 6,332 additions & 0 deletions css/bootstrap.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/bootstrap.css.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@


/* ==========================================================================
Author's custom styles
========================================================================== */

















Binary file added fonts/glyphicons-halflings-regular.eot
Binary file not shown.
229 changes: 229 additions & 0 deletions fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff
Binary file not shown.
38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">Verb practice</a>
</div>
</div>
</nav>

<div class="container">

</div>

<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/vendor/browser-polyfill.js"></script>
<script src="js/app.js"></script>

</body>
</html>
7 changes: 7 additions & 0 deletions js/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$(function() {

var data = $.get('/verbs.json').done(function() {
//
});

});
7 changes: 7 additions & 0 deletions js/vendor/bootstrap.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/vendor/browser-polyfill.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/vendor/jquery-1.11.2.min.js

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions verbs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[{
verb: "Avoir",
forms: [{
tense: "Present",
conjugation: [
{ q: "Je", a: "ai" },
{ q: "Tu", a: "as" },
{ q: "Il/Elle/On", a: "a" },
{ q: "Vous", a: "avez" },
{ q: "Nous", a: "avons" },
{ q: "Ils/Elles", a: "ont" }
]
}]
}, {
verb: "Faire",
forms: [{
tense: "Present",
conjugation: [
{ q: "Je", a: "fais" },
{ q: "Tu", a: "fais" },
{ q: "Il/Elle/On", a: "fait" },
{ q: "Vous", a: "faisons" },
{ q: "Nous", a: "faites" },
{ q: "Ils/Elles", a: "font" }
]
}]
}]

0 comments on commit 422a55a

Please sign in to comment.