-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminimalist.php
More file actions
32 lines (19 loc) · 990 Bytes
/
minimalist.php
File metadata and controls
32 lines (19 loc) · 990 Bytes
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
<?php
/* ------------------------------------------------------------------------------- INIT */
include("lib/app/minimalist/app.php");
/* ------------------------------------------------------------------------------- CONFIG */
$_HTML["page"] = "app_minimalist";
$_HTML["title"] = "APP Minimalist";
/* ------------------------------------------------------------------------------- CONTENT */
$_HTML["data"]["content"] .= "
<h1>APP minimaliste du framework _HTML.</h1>
<div class='space20'></div>
<h2>Code source pour générer cette page.</h2>
<div class='space20'></div>
".highlight_file( __FILE__ , true )."
<div class='space20'></div>
<p>".functions::lorem_ipsum( rand( 30 , 200 ) )."</p>
<p>".functions::lorem_ipsum( rand( 30 , 200 ) )."</p>
<p>".functions::lorem_ipsum( rand( 30 , 200 ) )."</p>";
/* ------------------------------------------------------------------------------- DISPLAY */
$_HTML["display"] = true;