jsencrypt
Version:
A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.
38 lines (37 loc) • 1.46 kB
HTML
<html>
<head>
<title>{{ page.title }}</title>
<base id="basetag" href="{{ site.baseurl }}/">
<!--[if IE]>
<script type='text/javascript'>
(function() {
var tag = document.getElementById('basetag');
tag.href = location.protocol + '//' + location.host + '{{ site.baseurl }}/';
}());
</script>
<![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="bin/jsencrypt.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-450670-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/css">
</head>
<body>
{% include navbar.html %}
<div class="container">
{{ content }}
</div>
</body>
</html>