17 lines
366 B
HTML
17 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="{{root}}/css/popup.css">
|
|
</head>
|
|
<body>
|
|
{{#each defs}}
|
|
<div class="definition">
|
|
{{> term.html}}
|
|
{{#unless @last}}<br>{{/unless}}
|
|
</div>
|
|
{{/each}}
|
|
</body>
|
|
</html>
|