-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition_list_template.phtml
executable file
·106 lines (93 loc) · 3.56 KB
/
definition_list_template.phtml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
header('Access-Control-Allow-Origin: *'); // ENABLE CORS (Cross-Origin Request) policy allow all
date_default_timezone_set('EST');
$page_heading = 'From EditPlus';
$title = 'EditPlus PHP Template';
$lastMod = "Modified: " . date("D M j Y G:i:s T", getlastmod());
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<?php print $title; ?>
</title>
<link rel="icon" type="image/ico" href="favicon.ico">
<link rel="shortcut icon" type="image/ico" href="favicon.ico">
<style>
.tsw {
font-family: "source serif pro";
font-size: 1.2rem;
font-style: italic;
}
/** if needed add style here
** NOTE THE NEW favICON code here:
**
*/
</style>
<link rel="icon" href="./favicon.ico" sizes="32x32">
<link rel="icon" href="./favicon.ico" sizes="192x192">
<link rel="apple-touch-icon" href="./favicon.ico">
<meta name="msapplication-TileImage" content="<!-- http://.file./ -->">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- BOOTSTRAP STYLE -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://api.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.css" rel="stylesheet">
<link href="assets/css/notes.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="pagewidth" class="container"> <!-- :begin class:content -->
<section id="header"> <!-- #HEADER -->
<h1 class="bg-dark text-light text-end pe-3">
<?php print $page_heading; ?>
</h1>
</section>
<section id="general_notes">
<h2>General Notes</h2>
<dl id="laravel_notes_dl" class="">
<dt id="">DT 01</dt>
<dd class="col"><p> para </p>
<code>code </code></dd>
<dt id="">DT 02</dt>
<dd class="col">DD 02
<pre>pre</pre>
</dd>
<dt>DT 03</dt>
<dd class="col">dd 03 </dd>
<dt>DT 04</dt>
<dd class="col">dd 04
</dd><dt>DT 05</dt>
<dd class="col">Dd 05
<dl> <p>Inner DL</p>
<dt>DT 01 inner</dt>
<dd class="col">DD 01 inner
</dd><dt id="">DT 02 inner</dt>
<dd class="col">DD 02 inner
</dd>
</dl>
<p>End outer DD</p></dd>
</dl>
</section>
<footer class="footer px-4"> <!-- .FOOTER -->
<div class="row gx-5">
<div class="col">
<div class="p-3 border bg-light"> Based on Notes by <a href="https://github.com/ajaxStardust" target="_blank"
title="View original">@ajaxStardust</a> <em>Laravel</em> notes:</div>
</div>
<div class="col">
<div class="p-3 border bg-light text-end"><kbd>
<?php echo $lastMod; ?>
</kbd></div>
</div>
</div>
</footer>
</div><!-- $ :end END class.content (former id.maincol) $ -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<script src="assets/js/showme-hideme.js"></script>
</body>
</html>