-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1723 lines (754 loc) · 42.8 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
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="theme-next pisces use-motion">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<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" />
<meta name="google-site-verification" content="419v7Yq1nw0hLCOXsjtVzA9MMqF1dEqiyfRjjYFTe-g" />
<link href="/vendors/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="/vendors/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.0.1" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/atom.xml" title="Woodfly" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.0.1" />
<meta property="og:type" content="website">
<meta property="og:title" content="Woodfly">
<meta property="og:url" content="http://woodfly.xyz/index.html">
<meta property="og:site_name" content="Woodfly">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Woodfly">
<script type="text/javascript" id="hexo.configuration">
var NexT = window.NexT || {};
var CONFIG = {
scheme: 'pisces',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: 0,
author: 'Author'
}
};
</script>
<link rel="canonical" href="http://woodfly.xyz/"/>
<title> Woodfly </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-70469083-1', 'auto');
ga('send', 'pageview');
</script>
<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">Woodfly</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">To be a better man</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 />
Home
</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 />
Categories
</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 />
Archives
</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 />
Tags
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="st-search-show-outputs">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
Search
</a>
</li>
</ul>
<div class="site-search">
<form class="site-search-form">
<input type="text" id="st-search-input" class="st-search-input st-default-search-input" />
</form>
<script type="text/javascript">
(function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){
(w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t);
e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e);
})(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st');
_st('install', 'hoM3pZB5nabg9Su3f_zM','2.0.0');
</script>
</div>
</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/hello-world/" itemprop="url">
Hello World
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-10-01T20:56:53+01:00" content="2016-10-01">
2016-10-01
</time>
</span>
<span class="post-comments-count">
|
<a href="/2016/hello-world/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/hello-world/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p>
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo new <span class="string">"My New Post"</span></div></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p>
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo server</div></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p>
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo generate</div></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p>
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo deploy</div></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/写在7.29/" itemprop="url">
Untitled
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-07-29T22:14:51+01:00" content="2016-07-29">
2016-07-29
</time>
</span>
<span class="post-comments-count">
|
<a href="/2016/写在7.29/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/写在7.29/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>在一声声的叹息中写下这些。就觉得一下子心凉了。忍不住的头脑一篇乱麻。觉得好累,感觉经历了一场生死搏斗,或是一场生离死别,完全不愿意去做什么了。最大的悲哀是怀疑自己,怀疑自己的过去。就陷入到一种很迷茫的状态。一直想逃避,一直想自己欺骗自己,觉得经过努力,事情一定会做好。我不在意我付出了多少,收获了什么,我甚至也不需要别人知道我做了什么,我一直维持着低调的态度和风格。想不到越是这样,越让人觉得一切都是那么简单,那么轻松。很多事情我不想说,也不想埋怨,心想着总归是为了别人好。多做点也没什么。<br>我很少因为事情特别困难而放弃的,我一般都会尽最大可能寻找其他的方法。但我最接受不了的是,别人的不信任,和最在乎的人的指责。我以为我已经考虑到了方方面面的问题和可能,而且我也对自己有信心。但在最麻烦的过程中,被人不理解,我却无从解释和证明,我一下子觉得信心全崩塌了。我一直觉得做得没错,而且付出了大量的时间和心力。一下子都被人贬低和看不上。那为什么还要继续呢。我不祈求回报,也无所谓其它。我的生活很简单,我也没觉得什么不好。我希望有几个可以说得上话的人,我的要求很低很低。<br>直到躺在床上才知道有多舒服,多放松,之前是有多累,多辛苦。<br>今天我的天空下了一场雨。我在公园里跑步,想大声骂几句,想让自己更累点。<br>听着《夜的钢琴曲五》,突然泪水再也忍不住了。我一个人在房间里大哭。</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/写在5.13/" itemprop="url">
Untitled
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-05-13T23:21:11+01:00" content="2016-05-13">
2016-05-13
</time>
</span>
<span class="post-comments-count">
|
<a href="/2016/写在5.13/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/写在5.13/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>今天突然听说你9月初就要走,突然整个人就傻了,不知道怎么办。一切太突然。不管怎么算,都只剩下一个月的时间。突然觉得这一切多么像我之前做的梦,在我还没准备好的时候,你就已经突然坐飞机离开。</p>
<p>我坐在公交车上,想着这些。安静地坐着。窗外的情况像要下雨,却只是一片灰色的云和薄薄的雾。突然好想写明信片,好像告诉我是有多么感谢能够遇到你,多么不想忘记你。</p>
<p>尽管今天发生了一堆糟糕的事,突然觉得这些事情是不是都是因我而起,让我很抱歉。</p>
<p>当重新收到你的消息,聊天时,感觉还是那么自然,可爱。喜欢听你说。</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/Flattering_conversations/" itemprop="url">
Flattering conversations
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-05-07T21:19:15+01:00" content="2016-05-07">
2016-05-07
</time>
</span>
<span class="post-category" >
|
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/Research/" itemprop="url" rel="index">
<span itemprop="name">Research</span>
</a>
</span>
</span>
<span class="post-comments-count">
|
<a href="/2016/Flattering_conversations/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/Flattering_conversations/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>女朋友的少女心:<br>女朋友出差去外地,刚打电话问我在哪儿,我说在家写稿。她说:“我不信,茶几上我留了个常吃的那种三明治,你去把包装袋撕开,让我听听声音对不对。”我操,这简直是谍战情节。还好我真的在家,按要求照办后,问:“接下来呢?”她说: “我知道你忙起来肯定不吃饭,快把它吃了。”</p>
<p>以下是我的还礼:<br>昨天晚上九点左右,我回到家里,女朋友不耐烦地说:“你是在美国买的可乐吗!”我把眼镜拿下来,擦了擦上面的雾气,小心翼翼地说:“不是,就在小区里买的。”“那你怎么去那么久!”“是这样的,这个月份买不到你要的冰镇可乐。”“然后呢?”我买了一听常温的,在小区花园坐了半个小时。”</p>
<p>和女朋友走在路上,有几个小混混挡住去路,我佯装镇定冲对他们吼道:“你们想干啥,知道我是谁吗?”那几个小混混问:“你是谁?”我指着女朋友说:“我是这个世界上最疼爱她的人!”</p>
<p>“他俩肯定好上了,我赌上我这条命!”而女朋友从我钱包里拿出一百块钱说:“我不信,我赌一百块他们没在一起。”我冷笑道:“你拿我的东西跟我赌?”她说:“是你先拿我的东西跟我赌的。”</p>
<p>女朋友上午生气离家出走,我很快就找到了她。她问我:“为啥我躲起来你这么容易就能找到我?”我说:“因为我善于发现美。”</p>
<p>女朋友剪完刘海回来问我咋样,我说:“说得好听点,像仙女一样。”她瞪着我问:“那说得难听呢?”“……像仙女一样。”我捏着嗓子学鸭子的声音说道。</p>
<p>女朋友在泡澡,吵着闹着要小黄鸭。我找遍房间也没有,眼瞅着她要生气了,我灵机一动,脱光了嘎嘎嘎地跳进了浴缸。</p>
<p>刚才让女朋友给我拿东西,她不听话,我很生气:“再说最后一遍,你还不给我拿,我就一年不理你。”女朋友抬头看了我一眼,还是没有动弹。我只好站起来自己去拿,回来的时候在门口用配音腔大声说了一句:one year later。</p>
<p>下午叫女朋友起来吃饭,她却躺在床上玩手机,丝毫没有动弹。我非常生气,走过去大声问道:“我是不是太惯着你了?”她说:“是。”“好的,那我继续吧。你吃啥,我给你带回来。”</p>
<p>和女朋友约了一个朋友见面,到了地点给他打电话:”我现在在南门。”他说:”南门?你附近有啥?””我看看啊。”我拉着女朋友的手说:”附近有一个特别好看的姑娘。”</p>
<p>晚上和女朋友吃完饭,我说:“待会把碗刷一下。”她说:“你自言自语声音怎么这么大?”</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/Chania 学习日记/" itemprop="url">
Untitled
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-04-24T18:22:48+01:00" content="2016-04-24">
2016-04-24
</time>
</span>
<span class="post-comments-count">
|
<a href="/2016/Chania 学习日记/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/Chania 学习日记/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Chania 学习日记<br>2016/4/24<br>今天是来到这里的第二天,早上10点多才醒,吃了点面包就出门准备跑步,后来一时兴起,决定走一遍去学校的路,发现真是太远了。而且其中一条稍远的路还有一段特别陡,偏僻的路。走着走着真是快崩溃了,别说跑步,走过去人都快虚脱了。Google maps上说需要1小时29分钟,走了一遍发现真的需要这么久,一点都不夸张。想想每天要这么走过去,心里一下子灰了一大截。</p>
<p>不过庆幸的是,路上是比较高的地方,可以看到主城和海岸,特别漂亮。海风吹着也特别舒服。路上还到LIDL超市去逛了,刚准备买东西的时候才发现换了裤子,没有拿钱。只好随便逛了一下。</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/Troubles-about-love/" itemprop="url">
Troubles about love
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-03-13T21:46:50Z" content="2016-03-13">
2016-03-13
</time>
</span>
<span class="post-category" >
|
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/Daily-Life/" itemprop="url" rel="index">
<span itemprop="name">Daily Life</span>
</a>
</span>
</span>
<span class="post-comments-count">
|
<a href="/2016/Troubles-about-love/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="2016/Troubles-about-love/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Sometimes I really do not know what love is. I do not know why the person I love cannot accept me. It is because of the time or myself.<br>
<div class="post-more-link text-center">
<a class="btn" href="/2016/Troubles-about-love/#more" rel="contents">
Read more »
</a>
</div>
</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">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/Beautiful-words/" itemprop="url">
Beautiful words
</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">Posted on</span>
<time itemprop="dateCreated" datetime="2016-03-05T11:11:38Z" content="2016-03-05">
2016-03-05
</time>
</span>
<span class="post-category" >
|
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/Daily-Life/" itemprop="url" rel="index">
<span itemprop="name">Daily Life</span>
</a>
</span>
</span>