forked from GrosSacASac/DOM99
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates4.html
42 lines (34 loc) · 1.39 KB
/
templates4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>dom99</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/basics.css">
<link rel="stylesheet" href="css/dcomment.css">
<link rel="icon" href="../documentation/images/visual2.jpg">
</head>
<body>
<article>
<h2>Article Title</h2>
<p>Article</p><p>Blalblabla I give my opinion blabla</p>
</article>
<!-- a comment is some text and a date -->
<template data-template="d-comment">
<article class="d-comment" data-element="comment"><!-- add a container for styling purposes -->
<p data-variable="text">Loading text ... (fake response takes 2sec)</p>
<time data-variable="date">Loading date ...</time>
<button data-function="delete">Delete</button>
</article>
</template>
<!-- data-list="VARIABLE_NAME - CUSTOM-ELEMENT_NAME" -->
<section data-list="comments-d-comment"></section>
<button data-function="click-showNextComment" >Show more comments</button>
<script nomodule src="../polyfills/built/polyfill.min.js"></script>
<script nomodule src="../polyfills/built/remove.js"></script>
<script nomodule src="../polyfills/built/template.js"></script>
<script nomodule src="../polyfills/template-mb-bootstrap.js"></script>
<script nomodule src="js/builtes5/templates4.js"></script>
<script type="module" src="js/templates4.js"></script>
</body>
</html>