36
src/app.html
36
src/app.html
@ -21,6 +21,42 @@
|
||||
<template id="test-button">
|
||||
<button type="button" class="btn btn-primary">Проверка сборки</button>
|
||||
</template>
|
||||
<!-- Шаблон колонки таблицы -->
|
||||
<template id="table-column">
|
||||
<th scope='col' class='Table__column'></th>
|
||||
</template>
|
||||
<!-- Шаблон строки таблицы -->
|
||||
<template id="table-row">
|
||||
<tr class="Table__body-row">
|
||||
<th class="Body__row-index"></th>
|
||||
</tr>
|
||||
</template>
|
||||
<!-- Шаблон главной таблицы -->
|
||||
<template id="main-table">
|
||||
<table class="table table-striped">
|
||||
<thead class="Table__head">
|
||||
<tr class='Table__head-row'>
|
||||
<th scope='col' class='Table__column'>#</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class='Table__body'>
|
||||
</tbody>
|
||||
</table>
|
||||
</template>
|
||||
<!-- Шаблон информации об апи -->
|
||||
<template id="api-info">
|
||||
<div class="container">
|
||||
<h1 class="Info__title"></h1>
|
||||
<div class="Info__body">
|
||||
<div class="Info__sidebar"></div>
|
||||
<div class="Info__editor"></div>
|
||||
</div>
|
||||
<div class="Info__footer">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user