[mod] put pages in containers classes

This commit is contained in:
Laurent Peuch 2018-07-15 08:31:26 +02:00
parent 9dd5aab623
commit dcab04771f
2 changed files with 37 additions and 33 deletions

View file

@ -10,6 +10,7 @@
</head> </head>
<body> <body>
<section class="section"> <section class="section">
<div class="container">
<h1 class="title">Tasks</h1> <h1 class="title">Tasks</h1>
<div id="jobs"> <div id="jobs">
<table class="table is-bordered is-hoverable is-striped is-fullwidth"> <table class="table is-bordered is-hoverable is-striped is-fullwidth">
@ -33,6 +34,7 @@
</tr> </tr>
</table> </table>
</div> </div>
</div>
</section> </section>
<script> <script>
(function() { (function() {

View file

@ -11,6 +11,7 @@
</head> </head>
<body> <body>
<section class="section" id="job"> <section class="section" id="job">
<div class="container">
<h1 class="title">Job '{{job.name}}'</h1> <h1 class="title">Job '{{job.name}}'</h1>
<table class="table is-bordered"> <table class="table is-bordered">
@ -24,6 +25,7 @@
<h2 class="subtitle">Excution log:</h2> <h2 class="subtitle">Excution log:</h2>
<pre>{{job.log}}</pre> <pre>{{job.log}}</pre>
</div>
</section> </section>
<script> <script>
(function() { (function() {