-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
968 lines (435 loc) · 28.3 KB
/
index.html
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
<!doctype html>
<html class="theme-next mist use-motion" lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="shortcut icon" type="image/x-icon" href="http://p1.bqimg.com/4851/6dcfb43ee7d2c3b9.png?v=5.1.0" />
<meta name="description" content="pvpin.github.io">
<meta property="og:type" content="website">
<meta property="og:title" content="PVPIN">
<meta property="og:url" content="http://pvpin.github.io/index.html">
<meta property="og:site_name" content="PVPIN">
<meta property="og:description" content="pvpin.github.io">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="PVPIN">
<meta name="twitter:description" content="pvpin.github.io">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"always"},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://pvpin.github.io/"/>
<title> PVPIN </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-CN">
<div class="container one-collumn sidebar-position-left
page-home
">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">PVPIN</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">用编程怼死世界</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-pvpin">
<a href="https://pvpin.com" rel="section">
<i class="menu-item-icon fa fa-fw fa-rocket"></i> <br />
PVPIN
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/About" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://pvpin.github.io/2017/01/26/开源PVPIN的JS版运行环境/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.png">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="PVPIN">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="PVPIN" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/01/26/开源PVPIN的JS版运行环境/" itemprop="url">
开源PVPIN的JS版运行环境
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-01-26T12:53:04+08:00">
2017-01-26
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Bukkit编程/" itemprop="url" rel="index">
<span itemprop="name">Bukkit编程</span>
</a>
</span>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/01/26/开源PVPIN的JS版运行环境/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/01/26/开源PVPIN的JS版运行环境/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>I believe that there are a lot of foreign friends reading our blog, so I choose use English and Chinese to write this article.</p>
<p><img src="https://dn-coding-net-production-static.qbox.me/3113aa7b-291d-402e-819e-bebbf07e5ef3.png" alt="封面"><br></p>
<h1 id="介绍-introduce"><a href="#介绍-introduce" class="headerlink" title="介绍 introduce"></a><big>介绍</big> <small>introduce</small></h1><p><br>Pay attention to the English text in this Readme are not so well,because this is the Machine Translation.So,if you have any do not understand that I hope you can forgive me,and if you can help me to improvement the text in Engilish that I’d like to thank you first,please mail me “[email protected]”.</p>
<h4 id="这是什么?-What-is-this"><a href="#这是什么?-What-is-this" class="headerlink" title="这是什么? What is this?"></a><big>这是什么?</big> <small>What is this?</small></h4><p>这是<em>PVPIN</em>,一个基于Java script实现编写JAVA语言用于“我的世界”/“Minecraft”中的插件的一个网站,中的运行环境时,也就是前端的源代码。<br><br>This is <em>“PVPIN”</em>,one based on Java script implementation develop by JAVA of the Minecraft plugins in RunTime.That is the front-end source.<br><br></p>
<h4 id="为什么可以使用javascript开发java版的Minecraft插件?"><a href="#为什么可以使用javascript开发java版的Minecraft插件?" class="headerlink" title="为什么可以使用javascript开发java版的Minecraft插件?"></a><big>为什么可以使用javascript开发java版的Minecraft插件?</big></h4><h4 id="Why-we-can-use-JavaScript-to-develop-java-version-of-the-Minecraft-plugins"><a href="#Why-we-can-use-JavaScript-to-develop-java-version-of-the-Minecraft-plugins" class="headerlink" title="Why we can use JavaScript to develop java version of the Minecraft plugins"></a><small>Why we can use JavaScript to develop java version of the Minecraft plugins</small></h4><p>因为java运行环境中有一个javascript引擎,可以运行javascript代码。更重要的是,可以直接在javascript中调用java代码。这样,我们就可以用javascript来写“java”程序。<br><br>Because the Java runtime environment has a JavaScript engine, you can run the JavaScript code. More importantly, you can directly call the Java code in javascript. In this way, we can use JavaScript to write “Java” program.<br><br><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_0.jpeg" alt="结构"><br><br>这样做有以下几个好处:<br><br><em> 更简单,javascript是一门比java更简单的语言。学习更快,编写相同的功能,花费的时间也更短;<br><br></em> javascript本身是一门性价比高的语言,值得一学。性 =用途广泛性(跨前后端与各种平台),价 =学习的代价(耗费时间与难易程度)<br><br><br><br>This has the following benefits:<br><br><em> JavaScript is a more simple language than JAVA. Learn faster, write the same function, and take less time;<br><br></em> dynamic, as a dynamic language, JavaScript can be modified and deployed in the server running code.<br><br>* JavaScript itself is a cost-effective language, it is worth learning. cost = use wide (across the front end and various platforms), price = the cost of learning (time and difficulty)</p>
<h4 id="如何使用它-How-to-use-it"><a href="#如何使用它-How-to-use-it" class="headerlink" title="如何使用它? How to use it?"></a><big>如何使用它?</big> <small>How to use it?</small></h4><p>Pay attention to next text will not provide English text that because the <em>“PVPIN”</em> was not have English page,only simplified Chinese.Because the <em>“PVPIN”</em> is just for Chinese Minecraft Players to use,if you really want use it by English,please contact us we will communicate this thing.You can contact us by “QQ” or “Mail”.But in the end we have a Copyright statement.(if you want to use this Runtime that please read it)<br>QQ number :4740281 (Gang Ma)<br>Mail :[email protected] (Gang Ma)</p>
<p>在此之前,你需要拥有一个PVPIN账号来编写插件,详细的规则请查看PVPIN内的相关帮助。+</p>
<p>一、获取服务端包。<br> 这里有一个简单的整合包:<a href="https://pan.baidu.com/s/1dENjTyL" target="_blank" rel="external">https://pan.baidu.com/s/1dENjTyL</a> 。</p>
<p>下载后解压:<br> <img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_1.png" alt="解压"></p>
<p>我们简要的解释一下压缩包里的这几个目录</p>
<ul>
<li>plugins 目录:这里就是放插件的地方。这里已经放了一个NPC插件 citizens-2.0.21-SNAPSHOT,<em>PVPIN</em>的NPC功能直接调用了这个插件。</li>
<li>server.properties :这是服务器的配置文件。你可以根据自己的需要修改,然后重启就可以生效。简要的说一下其中的几个配置: <ul>
<li>pvp=true:玩家之间是否可以对战。</li>
<li>difficulty=1:游戏难度,0是平和模式,1是容易,2是正常,3是困难。</li>
<li>gamemode=0:游戏模式,0生存,1创造,2冒险。</li>
<li>motd=A Minecraft Server:motd是每日消息(Message Of The Day)的英文缩写,就是玩家在服务器列表上看到的消息。</li>
</ul>
</li>
<li>start.bat :这是启动服务的脚本。</li>
</ul>
<p>双击启动脚本start.bat(前提是你已经安装好了java8),就可以看到启动消息了。<br> <img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_2.png" alt="消息"></p>
<p>同时会发现目录下又多了几个文件,其中最重要的就是 world目录。</p>
<ul>
<li>world 目录:这样的目录有好几个,都是用world开头的,例如world,world_nether,world_the_end。这里就是存放游戏地图的目录。在游戏运行的时候,最好不要修改里面的文件,有可能会带来严重的错误。</li>
</ul>
<h4 id="连入服务器"><a href="#连入服务器" class="headerlink" title="连入服务器"></a>连入服务器</h4><ul>
<li>打开minecraft客户端,选择“多人模式”。</li>
<li>选择添加服务器</li>
<li>填入本地ip地址 127.0.0.1</li>
<li>然后就可以连入了<br><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_2_1.png" alt="连接1"><br><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_2_2.png" alt="连接2"></li>
</ul>
<p>关于开服更详细的介绍请看czfy和aria的教程。 <a href="http://bbs.pvpin.com/topic/217" target="_blank" rel="external">http://bbs.pvpin.com/topic/217</a></p>
<h4 id="如何下载和运行在PVPIN上开发的插件?"><a href="#如何下载和运行在PVPIN上开发的插件?" class="headerlink" title="如何下载和运行在PVPIN上开发的插件?"></a>如何下载和运行在<em>PVPIN</em>上开发的插件?</h4><p>进入“我的作品”,在每一个作品下,有一个下载jar按钮。</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_3.png" alt=""></p>
<p>如果点击后看到了这样的界面:</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_4.png" alt=""></p>
<p>说明你的程序里用到了“我”这块积木,或者使用了没有指定出生位置的“建筑精灵”。到导出的代码请不要包含这两块积木,因为在服务器里不知道谁是“我”,而没有指定出生位置的“建筑精灵”,实际上也是取了“我”的位置,所以一样不能使用。</p>
<p>在正常情况下,你会看到这样的界面</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_5.png" alt=""></p>
<p>这时你有两个选择,下载jar包或者只下载js文件。如果你是第一下载请下载jar包。因为这里包含了pvpin的js运行环境。<br>将你下载好的插件放进plugins目录下。</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_6.png" alt=""></p>
<p>然后关闭服务器窗口,重新启动。看到PVPIN OK. 说明插件加载成功。</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_7.png" alt=""></p>
<p>这时候再看服务器目录,会发现多了一个PVPIN目录,这里包括了pvpin的js运行环境和你自己写的插件</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_8.png" alt=""></p>
<p>我们进入这个PVPIN目录,在 plugins/player 下里面就是你开发的js插件。</p>
<p><img src="https://raw.githubusercontent.com/PVPIN/pvpin_js_rt/master/images/jar_9.png" alt=""></p>
<h4 id="如果你要安装第二个插件,只需要下载插件的js文件,然后把js放进这个目录,然后重启服务器即可。不需要重新下载jar包,否则可能会覆盖。"><a href="#如果你要安装第二个插件,只需要下载插件的js文件,然后把js放进这个目录,然后重启服务器即可。不需要重新下载jar包,否则可能会覆盖。" class="headerlink" title="如果你要安装第二个插件,只需要下载插件的js文件,然后把js放进这个目录,然后重启服务器即可。不需要重新下载jar包,否则可能会覆盖。"></a>如果你要安装第二个插件,只需要下载插件的js文件,然后把js放进这个目录,然后重启服务器即可。不需要重新下载jar包,否则可能会覆盖。</h4><p>##至此,本文已经结束,尽情使用吧!</p>
<h2 id="提示:PVPIN的js运行环境会不时更新,请关注网站的更新通知。"><a href="#提示:PVPIN的js运行环境会不时更新,请关注网站的更新通知。" class="headerlink" title="提示:PVPIN的js运行环境会不时更新,请关注网站的更新通知。"></a>提示:PVPIN的js运行环境会不时更新,请关注网站的更新通知。</h2><p>GPL v2 开源协议<br><br></p>
<p><br>This project uses GPL V2 open source protocol for production, please follow this agreement in the relevant operations!<br><br> if it is for commercial use, please declare copyright at the relevant location!<br><br>Copy right 2017 PVPIN.com<br><br> thanks again for your reading!</p>
<p>最后,源码地址<br>At last, the source address<br><a href="https://github.com/pvpin/pvpin_js_rt" target="_blank" rel="external">ClickHere</a></p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://pvpin.github.io/2017/01/08/公告/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.png">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="PVPIN">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="PVPIN" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/01/08/公告/" itemprop="url">
公告
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-01-08T11:41:47+08:00">
2017-01-08
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/01/08/公告/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/01/08/公告/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>小游戏服开始征集插件辣!详情猛戳<a href="https://pvpin.github.io/小游戏服插件征集/index.html">这里</a></p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://pvpin.github.io/2017/01/08/第一篇文章/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.png">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="PVPIN">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="PVPIN" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/01/08/第一篇文章/" itemprop="url">
第一篇文章
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-01-08T11:20:05+08:00">
2017-01-08
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/01/08/第一篇文章/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/01/08/第一篇文章/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>这是PVPIN博客的第一篇文章</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</section>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.png"
alt="" />
<p class="site-author-name" itemprop="name"></p>
<p class="site-description motion-element" itemprop="description">pvpin.github.io</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories">
<span class="site-state-item-count">1</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2017</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder"></span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Mist
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script type="text/javascript">
var duoshuoQuery = {short_name:"pvpin"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.id = 'duoshuo-script';
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<script src="/lib/ua-parser-js/dist/ua-parser.min.js?v=0.7.9"></script>
<script src="/js/src/hook-duoshuo.js"></script>
</body>
</html>