easier classes on templates, and utf8 fix
This commit is contained in:
parent
c0a6f8e804
commit
31a71c413c
@ -1,5 +1,6 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<div class="card fluid">
|
<div class="card fluid">
|
||||||
<h1 class="section">Yoyodyne Propulsion Systems <small>Staff Roster</small></h1>
|
<h1 class="section">Yoyodyne Propulsion Systems <small>Staff Roster</small></h1>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<table>
|
<table id="employees">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>First Name</th>
|
<th>First Name</th>
|
||||||
|
@ -6,13 +6,13 @@
|
|||||||
<div class="section">
|
<div class="section">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Position</dt>
|
<dt>Position</dt>
|
||||||
<dd>{{ employee.position }}</dd>
|
<dd id="position">{{ employee.position }}</dd>
|
||||||
<dt>Marital Status</dt>
|
<dt>Marital Status</dt>
|
||||||
<dd>{{ employee.status }}</dd>
|
<dd id="status">{{ employee.status }}</dd>
|
||||||
<dt>Number of Children</dt>
|
<dt>Number of Children</dt>
|
||||||
<dd>{{ employee.children }}</dd>
|
<dd id="children">{{ employee.children }}</dd>
|
||||||
<dt>Hired</dt>
|
<dt>Hired</dt>
|
||||||
<dd>{{ employee.hired }}</dd>
|
<dd id="hired">{{ employee.hired }}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user