-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
56 lines (51 loc) · 2.53 KB
/
post.php
File metadata and controls
56 lines (51 loc) · 2.53 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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="window active" id="mainWindow">
<div class="title-bar" id="mainTitleBar">
<span class="title">
<img class="logo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAG1BMVEUAAACAgID////AwMAAAP8AAAAAAICAgAD//wAEq6BCAAAAAXRSTlMAQObYZgAAAAFiS0dEAmYLfGQAAAAHdElNRQfiBAkBOygXFdSWAAAAZUlEQVQI12NgYBQEAgYgYFRSUlIWgDEUwQwVJ9XQAAYGNhc3FSVlICO9xSUJxGCrcFJzAzHYW1xcwIzilCSQtgCG8hRnM7BISZgLRDELa2ggWIrBUQmihoHRGASADNZQEAhggAEA5J8Wdj6wl6oAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTgtMDQtMDlUMDE6NTk6NDAtMDQ6MDB6jF5OAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE4LTA0LTA5VDAxOjU5OjQwLTA0OjAwC9Hm8gAAAABJRU5ErkJggg==" draggable="false">
<?php $this->title() ?>
</span>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="closeWindow(this)"></button>
</div>
</div>
<div class="toolbar">
<?php $this->need('toolbar.php'); ?>
</div>
<div class="body">
<div class="content">
<div class="panel">
<h1><?php $this->options->title(); ?></h1>
<span class="hr"></span>
<p><?php $this->options->description(); ?></p>
</div>
<div class="app">
<div class="post">
<div class="post-title">
<a><?php $this->title() ?></a>
</div>
<div class="post-meta">
<span><?php $this->author(); ?></span> 于 <time datetime="<?php $this->date('c'); ?>"><?php $this->date(); ?></time> <span class="split"></span> 共<?php $this->commentsNum('%d'); ?>条评论
</div>
<div class="post-content">
<?php $this->content(); ?>
</div>
<div class="post-categories">
分类:<?php $this->category(','); ?>
</div>
</div>
<div class="comment">
<p>::::: <?php $this->commentsNum('%d'); ?>条评论 :::::</p>
<button onclick="toggleCommentWindow()">查看评论</button>
</div>
</div>
</div>
</div>
</div>
<?php $this->need('comments.php'); ?>
<?php $this->need('footer.php'); ?>