feat(matplotlib) Added matplotlib page
This commit is contained in:
parent
129e98b383
commit
6bec8d8f25
5 changed files with 494 additions and 8 deletions
51
app/templates/home.html
Normal file
51
app/templates/home.html
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{ head_scripts | safe}}
|
||||
<style>
|
||||
body {margin:0;}
|
||||
|
||||
.topnav {
|
||||
overflow: hidden;
|
||||
background-color: #1F271B;
|
||||
}
|
||||
|
||||
.topnav a {
|
||||
float: left;
|
||||
display: block;
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.topnav a:hover {
|
||||
background-color: #ddd;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.topnav a.active {
|
||||
background-color: #D95D39;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="topnav">
|
||||
<a class="active" href="#home">Home</a>
|
||||
<a href="/home">Home</a>
|
||||
<a href="/chartist">Chartist</a>
|
||||
<a href="/matplotlib">Matplotlib</a>
|
||||
</div>
|
||||
|
||||
{{ body | safe}}
|
||||
|
||||
</body>
|
||||
|
||||
<script>
|
||||
{{ scripts | safe}}
|
||||
</script>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue