forked from mmlTools/DarkCore-CMS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguides.php
More file actions
113 lines (113 loc) · 3.84 KB
/
guides.php
File metadata and controls
113 lines (113 loc) · 3.84 KB
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
107
108
109
110
111
112
113
<!--
GUIDES PAGE: Progress 25%
MAIN AUTHOR: Darksoke
-->
<?php define('DarkCoreCMS', TRUE); include 'header.php' ; ?>
<div id='content'>
<div id='content-wrapper'>
<div id='guides-body'>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
<div class="categorybox">
<span class="title">Guides Category Name</span>
<ul>
<li><a href="#guide1">About our custom BB code parser</a></li>
<li><a href="#guide2">About guides page</a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
<li><a href="#guide1">Guide title test </a></li>
</ul>
</div>
</div>
<div id='guide-body' style='display: block;'>
<div id='guide-main-description'>
<h1 class='content-wrapper-title' style='color:#61D17E !important;'><a name="guide1">About our custom BB code parser</a></h1>
<span class='box-divider'></span>
<p>
<?php $text = "This is a sample of a [b]BB[/b] parsed text \n
The following BB codes can be parsed
[list]
[l]COLOR[/l]
[l]UNDERLINE[/l]
[l]ITALIC[/l]
[l]BOLD[/l]
[l]STRIKED TEXT[/l]
[l]LINK[/l]
[l]FONT SIZE[/l]
[l]IMAGE[/l]
[list]
"; echo $text_parser->showBBcodes($text)?>
</p>
<h1 class='content-wrapper-title' style='color:#61D17E !important;'><a name="guide2">About guides page</a></h1>
<span class='box-divider'></span>
<p>
<?php $text = "This is a sample of a [b]BB[/b] parsed text \n
The following BB codes can be parsed
[list]
[l]COLOR[/l]
[l]UNDERLINE[/l]
[l]ITALIC[/l]
[l]BOLD[/l]
[l]STRIKED TEXT[/l]
[l]LINK[/l]
[l]FONT SIZE[/l]
[l]IMAGE[/l]
[list]
"; echo $text_parser->showBBcodes($text)?>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
<?php include 'global-footer.php' ?>
</html>