-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1249 lines (761 loc) · 37.9 KB
/
Copy pathindex.html
File metadata and controls
1249 lines (761 loc) · 37.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
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 lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Front Page Content
beautifulhugo supports content on your front page. Edit /content/_index.md to change what appears here. Delete /content/_index.md if you don’t want any content here.">
<meta name="author" content="Some Person"/><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Beautiful Hugo",
"url": "\/BeautifulHugo\/"
}
</script><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "",
"url": "\/BeautifulHugo\/"
}
</script>
<meta property="og:title" content="Beautiful Hugo" />
<meta property="og:description" content="Front Page Content
beautifulhugo supports content on your front page. Edit /content/_index.md to change what appears here. Delete /content/_index.md if you don’t want any content here.">
<meta property="og:image" content="/BeautifulHugo/img/avatar-icon.png" />
<meta property="og:url" content="/BeautifulHugo/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Beautiful Hugo" />
<meta name="twitter:title" content="Beautiful Hugo" />
<meta name="twitter:description" content="Front Page Content
beautifulhugo supports content on your front page. Edit /content/_index.md to change what appears here. Delete /content/_index.md if you don’t want any content here.">
<meta name="twitter:image" content="/BeautifulHugo/img/avatar-icon.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@username" />
<meta name="twitter:creator" content="@username" />
<link href='/BeautifulHugo/img/favicon.ico' rel='icon' type='image/x-icon'/>
<meta name="generator" content="Hugo 0.139.0">
<link rel="alternate" href="/BeautifulHugo/index.xml" type="application/rss+xml" title="Beautiful Hugo"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.css" integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.6.0/css/all.css" integrity="sha384-h/hnnw1Bi4nbpD6kE7nYfCXzovi622sY5WBxww8ARKwpdLj5kUWjRuyiXaD1U2JT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"><link rel="stylesheet" href="/BeautifulHugo/css/main.css" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" />
<link rel="stylesheet" href="/BeautifulHugo/css/highlight.min.css" /><link rel="stylesheet" href="/BeautifulHugo/css/codeblock.css" /><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.2/photoswipe.min.css" integrity="sha384-h/L2W9KefUClHWaty3SLE5F/qvc4djlyR4qY3NUV5HGQBBW7stbcfff1+I/vmsHh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.2/default-skin/default-skin.min.css" integrity="sha384-iD0dNku6PYSIQLyfTOpB06F2KCZJAKLOThS5HRe8b3ibhdEQ6eKsFf/EeFxdOt5R" crossorigin="anonymous">
<script>
window.HUGO_BASE_URL = "\/BeautifulHugo\/";
</script>
<script defer data-domain="vpadmin.org" src="/BeautifulHugo/vpadmin/vpadmin-menu-injector.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/BeautifulHugo/">Beautiful Hugo</a>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="nav navbar-nav navbar-right">
<li>
<a title="Blog" href="/BeautifulHugo/">Blog</a>
</li>
<li class="navlinks-container">
<a class="navlinks-parent" role="button" tabindex="0">Samples</a>
<div class="navlinks-children">
<a href="/BeautifulHugo/post/2017-03-07-bigimg-sample">Big Image Sample</a>
<a href="/BeautifulHugo/post/2017-03-05-math-sample">Math Sample</a>
<a href="/BeautifulHugo/post/2016-03-08-code-sample">Code Sample</a>
</div>
</li>
<li>
<a title="About" href="/BeautifulHugo/page/about/">About</a>
</li>
<li>
<a title="Tags" href="/BeautifulHugo/tags">Tags</a>
</li>
</ul>
</div>
<div class="avatar-container">
<div class="avatar-img-border">
<a title="Beautiful Hugo" href="/BeautifulHugo/">
<img class="avatar-img" src="/BeautifulHugo/img/avatar-icon.png" alt="Beautiful Hugo" />
</a>
</div>
</div>
</div>
</nav>
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<header class="header-section ">
<div class="intro-header no-img">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<h1>Beautiful Hugo</h1>
<hr class="small">
<span class="page-subheading">Build a beautiful and simple website in minutes</span>
</div>
</div>
</div>
</div>
</div>
</header>
<div role="main" class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="well">
<h2 id="front-page-content">Front Page Content</h2>
<p><code>beautifulhugo</code> supports content on your front page. Edit <code>/content/_index.md</code> to change what appears here. Delete <code>/content/_index.md</code> if you don’t want any content here.</p>
</div>
<div class="posts-list">
<article class="post-preview">
<a href="/BeautifulHugo/post/2017-03-20-photoswipe-gallery-sample/">
<h2 class="post-title">Photoswipe Gallery Sample</h2>
<h3 class="post-subtitle">
Making a Gallery
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on March 20, 2017
| <i class="fas fa-clock"></i> 2 minutes
| <i class="fas fa-book"></i> 215 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>Beautiful Hugo adds a few custom shortcodes created by <a href="https://www.liwen.id.au/heg/">Li-Wen Yip</a> and <a href="https://github.com/GjjvdBurg/HugoPhotoSwipe">Gert-Jan van den Berg</a> for making galleries with <a href="https://photoswipe.com">PhotoSwipe</a> .</p>
<div class="gallery caption-position-bottom caption-effect-fade hover-effect-zoom hover-transition" itemscope itemtype="http://schema.org/ImageGallery">
<link rel="stylesheet" href="/BeautifulHugo/css/hugo-easy-gallery.css" />
<div class="box" >
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<div class="img" style="background-image: url('/BeautifulHugo//img/hexagon-thumb.jpg');">
<img itemprop="thumbnail" src="/img/hexagon-thumb.jpg" alt="/img/hexagon-thumb.jpg"/>
</div>
<a href="/img/hexagon.jpg" itemprop="contentUrl"></a>
</figure>
</div>
<div class="box" >
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<div class="img" style="background-image: url('/BeautifulHugo//img/sphere-thumb.jpg');">
<img itemprop="thumbnail" src="/img/sphere-thumb.jpg" alt="Sphere"/>
</div>
<a href="/img/sphere.jpg" itemprop="contentUrl"></a>
<figcaption>
<p>Sphere</p>
</figcaption>
</figure>
</div>
<div class="box" >
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<div class="img" style="background-image: url('/BeautifulHugo//img/triangle-thumb.jpg');">
<img itemprop="thumbnail" src="/img/triangle-thumb.jpg" alt="This is a long comment about a triangle"/>
</div>
<a href="/img/triangle.jpg" itemprop="contentUrl"></a>
<figcaption>
<p>Triangle</p>
</figcaption>
</figure>
</div>
</div>
<a href="/BeautifulHugo/post/2017-03-20-photoswipe-gallery-sample/" class="post-read-more">[Read More]</a>
</div>
<div class="blog-tags">
<a href="/BeautifulHugo/tags/example/">example</a>
<a href="/BeautifulHugo/tags/photoswipe/">photoswipe</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2017-03-07-bigimg-sample/">
<h2 class="post-title">Big Image Sample</h2>
<h3 class="post-subtitle">
Using Multiple Images
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on March 7, 2017
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 191 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>The image banners at the top of the page are refered to as “bigimg” in this theme. They are optional, and one more more can be specified. If more than one is specified, the images rotate every 10 seconds. In the front matter, bigimgs are specified using an array of hashes.</p>
<a href="/BeautifulHugo/post/2017-03-07-bigimg-sample/" class="post-read-more">[Read More]</a>
</div>
<div class="blog-tags">
<a href="/BeautifulHugo/tags/example/">example</a>
<a href="/BeautifulHugo/tags/bigimg/">bigimg</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2017-03-05-math-sample/">
<h2 class="post-title">Math Sample</h2>
<h3 class="post-subtitle">
Using KaTeX
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on March 5, 2017
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 121 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>KaTeX can be used to generate complex math formulas server-side.</p>
<p>$$
\phi = \frac{(1+\sqrt{5})}{2} = 1.6180339887\cdots
$$</p>
<p>Additional details can be found on <a href="https://github.com/KaTeX/KaTeX">GitHub</a> or on the <a href="https://katex.org/">project homepage</a>.</p>
<a href="/BeautifulHugo/post/2017-03-05-math-sample/" class="post-read-more">[Read More]</a>
</div>
<div class="blog-tags">
<a href="/BeautifulHugo/tags/example/">example</a>
<a href="/BeautifulHugo/tags/math/">math</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2016-03-08-code-sample/">
<h2 class="post-title">Code Sample</h2>
<h3 class="post-subtitle">
Using Hugo or Pygments
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on March 8, 2016
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 183 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>The following are two code samples using syntax highlighting.</p>
<a href="/BeautifulHugo/post/2016-03-08-code-sample/" class="post-read-more">[Read More]</a>
</div>
<div class="blog-tags">
<a href="/BeautifulHugo/tags/example/">example</a>
<a href="/BeautifulHugo/tags/code/">code</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-02-26-flake-it-till-you-make-it/">
<h2 class="post-title">Flake it till you make it</h2>
<h3 class="post-subtitle">
Excerpt from Soulshaping by Jeff Brown
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on February 26, 2015
| <i class="fas fa-clock"></i> 3 minutes
| <i class="fas fa-book"></i> 443 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>Under what circumstances should we step off a path? When is it essential that we finish what we start? If I bought a bag of peanuts and had an allergic reaction, no one would fault me if I threw it out. If I ended a relationship with a woman who hit me, no one would say that I had a commitment problem. But if I walk away from a seemingly secure route because my soul has other ideas, I am a flake?</p>
<a href="/BeautifulHugo/post/2015-02-26-flake-it-till-you-make-it/" class="post-read-more">[Read More]</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-02-20-test-markdown/">
<h2 class="post-title">Test markdown</h2>
<h3 class="post-subtitle">
Each post also has a subtitle
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on February 20, 2015
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 95 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>You can write regular <a href="https://markdowntutorial.com/">markdown</a> here and <a href="https://gohugo.io">Hugo</a> will automatically convert it to a nice webpage. I strongly encourage you to <a href="https://markdowntutorial.com/">take 5 minutes to learn how to write in markdown</a> - it’ll teach you how to transform regular text into bold/italics/headings/tables/etc.</p>
<p><strong>Here is some bold text</strong></p>
<h2 id="here-is-a-secondary-heading">Here is a secondary heading</h2>
<p>Here’s a useless table:</p>
<table>
<thead>
<tr>
<th style="text-align: left">Number</th>
<th style="text-align: left">Next number</th>
<th style="text-align: left">Previous number</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">Five</td>
<td style="text-align: left">Six</td>
<td style="text-align: left">Four</td>
</tr>
<tr>
<td style="text-align: left">Ten</td>
<td style="text-align: left">Eleven</td>
<td style="text-align: left">Nine</td>
</tr>
<tr>
<td style="text-align: left">Seven</td>
<td style="text-align: left">Eight</td>
<td style="text-align: left">Six</td>
</tr>
<tr>
<td style="text-align: left">Two</td>
<td style="text-align: left">Three</td>
<td style="text-align: left">One</td>
</tr>
</tbody>
</table>
<p>How about a yummy crepe?</p>
<a href="/BeautifulHugo/post/2015-02-20-test-markdown/" class="post-read-more">[Read More]</a>
</div>
<div class="blog-tags">
<a href="/BeautifulHugo/tags/example/">example</a>
<a href="/BeautifulHugo/tags/markdown/">markdown</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-02-13-hamlet-monologue/">
<h2 class="post-title">To be</h2>
<h3 class="post-subtitle">
... or not to be?
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on February 13, 2015
| <i class="fas fa-clock"></i> 2 minutes
| <i class="fas fa-book"></i> 275 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>To be, or not to be–that is the question:
Whether ’tis nobler in the mind to suffer
The slings and arrows of outrageous fortune
Or to take arms against a sea of troubles
And by opposing end them. To die, to sleep–
No more–and by a sleep to say we end
The heartache, and the thousand natural shocks
That flesh is heir to. ‘Tis a consummation
Devoutly to be wished. To die, to sleep–
To sleep–perchance to dream: ay, there’s the rub,
For in that sleep of death what dreams may come
When we have shuffled off this mortal coil,
Must give us pause. There’s the respect
That makes calamity of so long life.
For who would bear the whips and scorns of time,
Th’ oppressor’s wrong, the proud man’s contumely
The pangs of despised love, the law’s delay,
The insolence of office, and the spurns
That patient merit of th’ unworthy takes,
When he himself might his quietus make
With a bare bodkin? Who would fardels bear,
To grunt and sweat under a weary life,
But that the dread of something after death,
The undiscovered country, from whose bourn
No traveller returns, puzzles the will,
And makes us rather bear those ills we have
Than fly to others that we know not of?
Thus conscience does make cowards of us all,
And thus the native hue of resolution
Is sicklied o’er with the pale cast of thought,
And enterprise of great pitch and moment
With this regard their currents turn awry
And lose the name of action. – Soft you now,
The fair Ophelia! – Nymph, in thy orisons
Be all my sins remembered.</p>
<a href="/BeautifulHugo/post/2015-02-13-hamlet-monologue/" class="post-read-more">[Read More]</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-01-27-dear-diary/">
<h2 class="post-title">Dear diary</h2>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on January 27, 2015
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 78 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>What is it with that Mary girl? Dragging me to school every day. As if I had a choice. What you don’t hear in those nursery rhymes is that she starves me if I don’t go to school with her; it’s the only way I can stay alive! I’m thinking about being adopted by Little Bo Peep, sure I may get lost, but anything is better than being with Mary and those little brats at school (shudder, shudder).</p>
<a href="/BeautifulHugo/post/2015-01-27-dear-diary/" class="post-read-more">[Read More]</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-01-19-soccer/">
<h2 class="post-title">Soccer</h2>
<h3 class="post-subtitle">
Best sport ever!
</h3>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on January 19, 2015
| <i class="fas fa-clock"></i> 2 minutes
| <i class="fas fa-book"></i> 216 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>From Wikipedia:</p>
<p>Association football, more commonly known as football or soccer,[2] is a sport played between two teams of eleven players with a spherical ball. It is played by 250 million players in over 200 countries, making it the world’s most popular sport.[3][4][5][6] The game is played on a rectangular field with a goal at each end. The object of the game is to score by getting the ball into the opposing goal.</p>
<a href="/BeautifulHugo/post/2015-01-19-soccer/" class="post-read-more">[Read More]</a>
</div>
</article>
<article class="post-preview">
<a href="/BeautifulHugo/post/2015-01-15-pirates/">
<h2 class="post-title">Pirates arrrr</h2>
</a>
<p class="post-meta">
<span class="post-meta">
<i class="fas fa-calendar"></i> Posted on January 15, 2015
| <i class="fas fa-clock"></i> 1 minutes
| <i class="fas fa-book"></i> 78 words
| <i class="fas fa-user"></i> Some Person
</span>
</p>
<div class="post-entry">
<p>Piracy is typically an act of robbery or criminal violence at sea. The term can include acts committed on land, in the air, or in other major bodies of water or on a shore. It does not normally include crimes committed against persons traveling on the same vessel as the perpetrator (e.g. one passenger stealing from others on the same vessel). The term has been used throughout history to refer to raids across land borders by non-state agents.</p>
<a href="/BeautifulHugo/post/2015-01-15-pirates/" class="post-read-more">[Read More]</a>
</div>
</article>
</div>
<ul class="pager main-pager">
<li class="next">
<a href="/BeautifulHugo/page/2/">Older Posts →</a>
</li>
</ul>
</div>
</div>
</div>
<div class="page-meta">
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center footer-links">
<li>
<a href="mailto:youremail@domain.com" title="Email me">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-envelope fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/username" title="Facebook">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://github.com/username" title="GitHub">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://gitlab.com/username" title="GitLab">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-gitlab fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://bitbucket.org/username" title="Bitbucket">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-bitbucket fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://twitter.com/username" title="Twitter">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-x-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://username.slack.com/" title="Slack">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-slack fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://reddit.com/u/username" title="Reddit">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-reddit-alien fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://linkedin.com/in/username" title="LinkedIn">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.xing.com/profile/username" title="Xing">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-xing fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://stackoverflow.com/users/XXXXXXX/username" title="StackOverflow">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-stack-overflow fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.snapchat.com/add/username" title="Snapchat">