fromage-js/src/html/index.html

99 lines
2.5 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>
<div class="author">
<h2>
{{demo || ' angular ne marche pas ici '}}
</h2>
{{demo}}
</div>
<hr/>
<div ng-include="'tpl/main.html'"></div>
<!-- Add your site or application content here -->
<div class="container" ng-view=""></div>
<div class="alert alert-info">
<h2>
<i class="fa fa-heart fa-2x"></i>
This app includes :
</h2>
Gulp, Angular, coffeescript, jquery, bootstrap, font awesome, commitement to open source.
<hr/>
<i class="fa fa-diamond fa-2x"></i>
karma, jasmine, jslint, uglify, coverall and more.
</div>
<h2>
<i class="fa fa-file fa-2x"></i>
Comment jouer:
</h2>
<div class="row">
<div class="col-lg-12">
<div id="board">
<div class="row" ng-repeat="for sq_row in squares_rows">
<div class="square"
ng-repeat="for s in sq_row"
ng-click="s.active = !s.active"
ng-class="{active: s.active}"
>
<strong> {{s.text}}</strong>
</div>
</div>
</div>
<pre class="debug padded warning">
config :
{{config|json}}
</pre>
Code disponible sur
<a href="http://github.com/tykayn">mon github tykayn</a>
</div>
</div>
<div class="row">
<a href="http://twitter.com/tykayn">
<i class="fa fa-twitter"></i>
@tykayn
</a>
</div>
</div>
<!-- bower:js -->
<!-- endbower -->
<script src="js/main.js"></script>
</body>
</html>