Commit 68c7896abdd719cb6c4316c165c45f93eabfb722
1 parent
79bb411d
Bower !
Showing
5 changed files
with
29 additions
and
8 deletions
Show diff stats
.gitignore
README.md
@@ -2,4 +2,4 @@ | @@ -2,4 +2,4 @@ | ||
2 | Serveur et client web pour le système de paiment de 10⁵ | 2 | Serveur et client web pour le système de paiment de 10⁵ |
3 | 3 | ||
4 | ##Installation | 4 | ##Installation |
5 | -Installer [Materialize](http://materializecss.com/getting-started.html). | 5 | +Installer [Bower](http://bower.io/), puis lancer `bower install`. |
@@ -0,0 +1,22 @@ | @@ -0,0 +1,22 @@ | ||
1 | +{ | ||
2 | + "name": "10p5-server", | ||
3 | + "homepage": "https://github.com/GeoffreyFrogeye/10p5-server", | ||
4 | + "authors": [ | ||
5 | + "Le Club Info Polytech Lille <Club.Informatique@polytech-lille.fr>" | ||
6 | + ], | ||
7 | + "description": "Client web pour le système de paiment de 10⁵", | ||
8 | + "main": "index.html", | ||
9 | + "license": "Copyright", | ||
10 | + "private": true, | ||
11 | + "ignore": [ | ||
12 | + "**/.*", | ||
13 | + "node_modules", | ||
14 | + "bower_components", | ||
15 | + "test", | ||
16 | + "tests" | ||
17 | + ], | ||
18 | + "dependencies": { | ||
19 | + "Materialize": "materialize#^0.97.6", | ||
20 | + "material-icons": "^0.1.0" | ||
21 | + } | ||
22 | +} |
index.html
@@ -7,8 +7,8 @@ | @@ -7,8 +7,8 @@ | ||
7 | <title>10⁵</title> | 7 | <title>10⁵</title> |
8 | 8 | ||
9 | <!-- CSS --> | 9 | <!-- CSS --> |
10 | - <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
11 | - <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" /> | 10 | + <link href="lib/material-icons/css/material-icons.min.css" rel="stylesheet"> |
11 | + <link href="lib/Materialize/dist/css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection" /> | ||
12 | <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" /> | 12 | <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" /> |
13 | </head> | 13 | </head> |
14 | 14 | ||
@@ -61,8 +61,8 @@ | @@ -61,8 +61,8 @@ | ||
61 | 61 | ||
62 | 62 | ||
63 | <!-- Scripts--> | 63 | <!-- Scripts--> |
64 | - <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | ||
65 | - <script src="js/materialize.js"></script> | 64 | + <script src="lib/jquery/dist/jquery.min.js"></script> |
65 | + <script src="lib/Materialize/dist/js/materialize.min.js"></script> | ||
66 | <script src="js/init.js"></script> | 66 | <script src="js/init.js"></script> |
67 | 67 | ||
68 | </body> | 68 | </body> |