-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>{{ title }}</title> | ||
<meta name="msapplication-TileColor" content="#5bc0de"/> | ||
<meta name="msapplication-TileImage" content="{{assets}}/img/metis-tile.png"/> | ||
|
||
<head> | ||
{{> meta}} | ||
|
||
<!-- Bootstrap --> | ||
{{#if rtl}} | ||
<!-- Bootstrap --> | ||
{{#if rtl}} | ||
<link rel="stylesheet" href="{{assets}}/lib/bootstrap/dist/css/bootstrap.rtl.css"> | ||
{{else}} | ||
{{else}} | ||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"> | ||
{{/if}} | ||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.min.css"> | ||
{{/if}} | ||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.min.css"> | ||
<!-- Metis core stylesheet --> | ||
{{#if rtl}} | ||
<link rel="stylesheet" href="{{assets}}/css/main.rtl.css"> | ||
<link rel="stylesheet" href="{{assets}}/css/main.rtl.css"> | ||
{{else}} | ||
<link rel="stylesheet" href="{{assets}}/css/main.min.css"> | ||
<link rel="stylesheet" href="{{assets}}/css/main.min.css"> | ||
{{/if}} | ||
{{#if rtl}} | ||
<style>body{direction: rtl;}</style> | ||
<style> | ||
body { | ||
direction: rtl; | ||
} | ||
</style> | ||
{{/if}} | ||
|
||
</head> | ||
<body class="login"> | ||
</head> | ||
|
||
{% body %} | ||
<body class="login"> | ||
|
||
{% body %} | ||
|
||
<!--jQuery --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | ||
<!--Bootstrap --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> | ||
|
||
<script type="text/javascript"> | ||
(function($) { | ||
$(document).ready(function() { | ||
$('.list-inline li > a').click(function() { | ||
var activeForm = $(this).attr('href') + ' > form'; | ||
//console.log(activeForm); | ||
$(activeForm).addClass('animated fadeIn'); | ||
//set timer to 1 seconds, after that, unload the animate animation | ||
setTimeout(function() { | ||
$(activeForm).removeClass('animated fadeIn'); | ||
}, 1000); | ||
<!--jQuery --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | ||
<!--Bootstrap --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> | ||
|
||
<script type="text/javascript"> | ||
(function($) { | ||
$(document).ready(function() { | ||
$('.list-inline li > a').click(function() { | ||
var activeForm = $(this).attr('href') + ' > form'; | ||
//console.log(activeForm); | ||
$(activeForm).addClass('animated fadeIn'); | ||
//set timer to 1 seconds, after that, unload the animate animation | ||
setTimeout(function() { | ||
$(activeForm).removeClass('animated fadeIn'); | ||
}, 1000); | ||
}); | ||
}); | ||
}); | ||
})(jQuery); | ||
</script> | ||
</body> | ||
})(jQuery); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<meta charset="UTF-8"> | ||
<!--IE Compatibility modes--> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<!--Mobile first--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
<title>{{title}}</title> | ||
|
||
<meta name="description" content="{{pkg.description}}"> | ||
<meta name="author" content="{{pkg.author.name}}"> | ||
|
||
<meta name="msapplication-TileColor" content="#5bc0de"/> | ||
<meta name="msapplication-TileImage" content="{{assets}}/img/metis-tile.png"/> |