-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkit.php
More file actions
87 lines (85 loc) · 3.85 KB
/
Copy pathkit.php
File metadata and controls
87 lines (85 loc) · 3.85 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
<?php
include 'core.php'
?>
<!DOCTYPE html>
<html dir="rtl">
<head>
<title>Epic reader</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/uikit-rtl.min.css" />
<script src="assets/js/uikit.min.js"></script>
<script src="assets/js/uikit-icons.min.js"></script>
<script src="https://unpkg.com/ionicons@5.2.3/dist/ionicons.js"></script>
<style>
body {
/* background: url('https://www.teahub.io/photos/full/111-1110876_spotify-wallpaper.jpg');
background-repeat: no-repeat;
background-position: center; */
background: #34495e;
min-height: 100vh;
}
#root-container {
}
.opacity-90 {
background: rgb(255 255 255 / 90%)
}
.blink {
animation: blinker 1.5s cubic-bezier(.5, 0, 1, 1) infinite alternate;
color: #e74c3c;
}
@keyframes blinker {
from { opacity: 1; }
to { opacity: 0; }
}
</style>
</head>
<body>
<div id="root-container" class="uk-container uk-container-small uk-margin-auto uk-padding-large">
<div class="uk-card uk-card-default uk-card-large uk-card-body uk-width-1-1@m uk-border-rounded opacity-90">
<ul uk-tab>
<li><a href="#">اقتصادی</a></li>
<li><a href="#">سیاسی</a></li>
<li><a href="#">حوادث</a></li>
</ul>
<ul class="uk-switcher uk-margin">
<li>
<table class="uk-table uk-table-divider uk-table-justify">
<!-- <caption>آخرین اخبار اقتصادی</caption> -->
<!--
<thead>
<tr>
<th>Table Heading</th>
<th>Table Heading</th>
<th>Table Heading</th>
<th>Table Heading</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Table Footer</td>
<td>Table Footer</td>
<td>Table Footer</td>
<td>Table Footer</td>
</tr>
</tfoot>
-->
<tbody>
<?php foreach ($op as $timestamp => $item): ?>
<tr>
<td class="uk-table-shrink"><ion-icon name="ellipse-outline" class="blink"></ion-icon></td>
<td class="uk-table-expand"><?php echo $item['title']; ?></td>
<td class="uk-table-small"><?php echo $item['src']; ?></td>
<td class="uk-table-small"><?php echo date('Y/d/m H:i:s', $item['timestamp']); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</li>
<li>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur, sed do eiusmod.</li>
</ul>
</div>
</div>
</body>
</html>