Add the legacy frontend themes, scripts, and plugin assets required by the main SPOTA interfaces.
51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>summernote</title>
|
|
<!-- include jquery -->
|
|
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
|
|
|
|
<!-- include libraries BS3 -->
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css" />
|
|
<script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" />
|
|
|
|
<!-- include summernote -->
|
|
<link rel="stylesheet/less" type="text/css" href="summernote.less" />
|
|
<script type="text/javascript" src="summernote.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('.summernote').summernote({height: 300, focus: true, tabsize: 2});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h3>Bootstrap v3.0</h3>
|
|
<div class="summernote"></div>
|
|
<h3>Bootstrap v2.x</h3>
|
|
<iframe src="bs2.html" width="100%" height="300px" frameBorder="0"></iframe>
|
|
</div>
|
|
<script type="text/javascript">
|
|
less = {
|
|
env: "development", // or "production"
|
|
async: false, // load imports async
|
|
fileAsync: false, // load imports async when in a page under
|
|
// a file protocol
|
|
poll: 1000, // when in watch mode, time in ms between polls
|
|
functions: {}, // user functions, keyed by name
|
|
dumpLineNumbers: "comments", // or "mediaQuery" or "all"
|
|
relativeUrls: false,// whether to adjust url's to be relative
|
|
// if false, url's are already relative to the
|
|
// entry less file
|
|
rootpath: ":/a.com/"// a path to add on to the start of every url
|
|
//resource
|
|
};
|
|
</script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/1.3.3/less.min.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|