forked from uniter/uniter-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
counting_elements.html
executable file
·62 lines (55 loc) · 2.1 KB
/
counting_elements.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Uniter PHP Counting Current Elements Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/assets/jquery-full.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="counting_elements">
<div class="full_row">
<h1>
Uniter PHP Counting Current Elements Demo
</h1>
<p>
The logic for this page is written entirely in PHP,
see <a href="//github.com/uniter/uniter-jquery/blob/master/php/src/CountCurrentElements/app.php">
Count Current Elements</a> for a look at the php code.
</p>
</div>
<div class="full_row">
<div class="all_demos" id="demo_element_list">
<div class="demo_entry demo_title_entry">
<h2 id="counter">2</h2>
</div>
<div class="demo_entry demo_title_entry">
<div class="left_cell" id="add_element">
<h2>Add Element</h2>
</div>
<div class="right_cell" id="remove_element">
<h2>Remove Element</h2>
</div>
</div>
<div class="demo_entry demo_standard_entry">
A demo entry
</div>
<div class="demo_entry demo_standard_entry">
A demo entry
</div>
</div>
</div>
<div class="full_row">
<h2>
<a href="index.html">
Back To Home
</a>
</h2>
<a href="https://github.com/uniter/uniter-jquery">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="img/forkme_right_green.png" alt="Fork me on GitHub">
</a>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>