-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrednora.php
More file actions
118 lines (102 loc) · 2.9 KB
/
frednora.php
File metadata and controls
118 lines (102 loc) · 2.9 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
114
115
116
117
118
<!DOCTYPE html>
<!-- Document created by Fred Nora -->
<!-- Credits: A. de Regt -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0">
<meta
name="description"
content="This is the Fred Nora's web page">
<meta
name="author"
content="Fred Nora">
<title>Fred Nora</title>
<style>
/* Container */
.popup_container {
background: var(--gramado-color-bg);
color: var(--gramado-color-text);
text-align: center;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border-radius: .33rem;
padding: 10px;
box-shadow: 10px 10px lightgray;
}
@media (max-width: 768px) {
.popup_container {
width: 90vw;
padding: 5vw;
font-size: 1.1em;
}
}
</style>
<!-- Prefetch -->
<link rel="dns-prefetch" href="https://github.com/"/>
<!-- Includes -->
<link href="./assets/css/gramado.css" rel="stylesheet">
<link href="./assets/img/favicon.jpg" rel="shortcut icon" type="image/jpg"/>
</head>
<body>
<div class="popup_container">
<!-- Header -->
<h1>Fred Nora's webpage</h1>
<br>
<?php
$thing = "world";
//printf ("Hello %s!\n", $thing);
echo ("Hello {$thing}! <br>\n");
$cwd = getcwd();
$files = scandir($cwd);
sort($files); //Sort the Directory List Alphabetically
// List directories
foreach ($files as $file)
{
if ( is_dir($file) &&
ctype_alnum($file) &&
$file != 'assets' )
{
?>
<!-- Link -->
<!-- We use htmlspecialchars to avoid XSS attacks. -->
<br/>
<a href="/<?php echo htmlspecialchars($file); ?>/index.html"><?php echo htmlspecialchars($file); ?>/</a>
<?php
}
}
?>
<!-- Button -->
<div class="gramado-container" role="dialog" aria-modal="true">
<br>
<button
role="button"
aria-modal="Refresh Page"
class="gramado-button"
id="main-button"
onclick="frednoraReloadPage()">
Refresh Page
</button>
</div>
<!-- Button 2: Test Dummy JSON API-->
<div class="gramado-container">
<br>
<button
role="button"
aria-modal="Test API"
class="gramado-button"
id="main-button"
onclick="frednoraTestAPI()">
Test API
</button>
</div>
<br/>
</div>
<!-- Cool scripts goes here! -->
<script src="./assets/js/frednora.js"></script>
</body>
</html>