|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | | - <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <title>{{ title }}</title> |
6 | | - <meta name="msapplication-TileColor" content="#5bc0de"/> |
7 | | - <meta name="msapplication-TileImage" content="{{assets}}/img/metis-tile.png"/> |
8 | 3 |
|
| 4 | +<head> |
| 5 | + {{> meta}} |
9 | 6 |
|
10 | | - <!-- Bootstrap --> |
11 | | - {{#if rtl}} |
| 7 | + <!-- Bootstrap --> |
| 8 | + {{#if rtl}} |
12 | 9 | <link rel="stylesheet" href="{{assets}}/lib/bootstrap/dist/css/bootstrap.rtl.css"> |
13 | | - {{else}} |
| 10 | + {{else}} |
14 | 11 | <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"> |
15 | | - {{/if}} |
16 | | - <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.min.css"> |
| 12 | + {{/if}} |
| 13 | + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.min.css"> |
17 | 14 | <!-- Metis core stylesheet --> |
18 | 15 | {{#if rtl}} |
19 | | - <link rel="stylesheet" href="{{assets}}/css/main.rtl.css"> |
| 16 | + <link rel="stylesheet" href="{{assets}}/css/main.rtl.css"> |
20 | 17 | {{else}} |
21 | | - <link rel="stylesheet" href="{{assets}}/css/main.min.css"> |
| 18 | + <link rel="stylesheet" href="{{assets}}/css/main.min.css"> |
22 | 19 | {{/if}} |
23 | 20 | {{#if rtl}} |
24 | | - <style>body{direction: rtl;}</style> |
| 21 | + <style> |
| 22 | + body { |
| 23 | + direction: rtl; |
| 24 | + } |
| 25 | + </style> |
25 | 26 | {{/if}} |
26 | 27 |
|
27 | | - </head> |
28 | | - <body class="login"> |
| 28 | +</head> |
29 | 29 |
|
30 | | - {% body %} |
| 30 | +<body class="login"> |
31 | 31 |
|
| 32 | + {% body %} |
32 | 33 |
|
33 | | - <!--jQuery --> |
34 | | - <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
35 | | - <!--Bootstrap --> |
36 | | - <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> |
37 | 34 |
|
38 | | - <script type="text/javascript"> |
39 | | - (function($) { |
40 | | - $(document).ready(function() { |
41 | | - $('.list-inline li > a').click(function() { |
42 | | - var activeForm = $(this).attr('href') + ' > form'; |
43 | | - //console.log(activeForm); |
44 | | - $(activeForm).addClass('animated fadeIn'); |
45 | | - //set timer to 1 seconds, after that, unload the animate animation |
46 | | - setTimeout(function() { |
47 | | - $(activeForm).removeClass('animated fadeIn'); |
48 | | - }, 1000); |
| 35 | + <!--jQuery --> |
| 36 | + <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
| 37 | + <!--Bootstrap --> |
| 38 | + <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> |
| 39 | + |
| 40 | + <script type="text/javascript"> |
| 41 | + (function($) { |
| 42 | + $(document).ready(function() { |
| 43 | + $('.list-inline li > a').click(function() { |
| 44 | + var activeForm = $(this).attr('href') + ' > form'; |
| 45 | + //console.log(activeForm); |
| 46 | + $(activeForm).addClass('animated fadeIn'); |
| 47 | + //set timer to 1 seconds, after that, unload the animate animation |
| 48 | + setTimeout(function() { |
| 49 | + $(activeForm).removeClass('animated fadeIn'); |
| 50 | + }, 1000); |
| 51 | + }); |
49 | 52 | }); |
50 | | - }); |
51 | | - })(jQuery); |
52 | | -</script> |
53 | | - </body> |
| 53 | + })(jQuery); |
| 54 | + </script> |
| 55 | +</body> |
| 56 | + |
54 | 57 | </html> |
0 commit comments