fromage-js/src/html/index.html

69 lines
2.0 KiB
HTML

<!doctype html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fallacy Bingo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="icon" href="img/favicon.ico"/>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- bower:css -->
<!-- endbower -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body ng-app="tkApp">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a>
to improve your experience.
</p><![endif]-->
<div class="container" ng-controller="MainCtrl">
<h1>
<i class="fa fa-book fa-3x"></i>
Fallacy Bingoooooo
</h1>
<hr/>
<div id="gameover" ng-if="didWeWon()">
<h2>Bien joué!</h2>
</div>
<div class="Well">
{{winReason}}
</div>
<div ng-include="'tpl/bingo.html'"></div>
<!-- Add your site or application content here -->
<div class="container" ng-view="">
</div>
<h2>
<i class="fa fa-file fa-2x"></i>
Comment jouer:
</h2>
<div class="alert alert-info">
trouvez les argumentations foireuses dans les discours, pas seulement en politique. Cliquez sur une case
correspondant à l'erreur et voyez en combien de temps vous pouvez former une ligne verticale, horizontale, ou
diagonale.
</div>
Code disponible sur
<a href="http://github.com/tykayn">mon github tykayn</a>
<a href="http://twitter.com/tykayn">
<i class="fa fa-twitter"></i>
@tykayn
</a>
</div>
<!-- bower:js -->
<!-- endbower -->
<script src="js/main.js"></script>
</body>
</html>