Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitmodules - github.com/gohugoio/hugoThemes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21c7094736ad6e5dd98c49d83d24ddbe9feb5946 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
[submodule "hyde"]
	path = hyde
	url = https://github.com/spf13/hyde.git
[submodule "lanyon"]
	path = lanyon
	url = https://github.com/tummychow/lanyon-hugo.git
[submodule "simple-a"]
	path = simple-a
	url = https://github.com/AlexFinn/simple-a.git
[submodule "liquorice"]
	path = liquorice
	url = https://github.com/eliasson/liquorice.git
[submodule "purehugo"]
	path = purehugo
	url = https://github.com/dplesca/purehugo.git
[submodule "nofancy"]
	path = nofancy
	url = https://github.com/gizak/nofancy.git
[submodule "twentyfourteen"]
	path = twentyfourteen
	url = https://github.com/jaden/twentyfourteen.git
[submodule "vienna"]
	path = vienna
	url = https://github.com/keichi/vienna.git
[submodule "pixyll"]
	path = pixyll
	url = https://github.com/azmelanar/hugo-theme-pixyll.git
[submodule "bootie-docs"]
	path = bootie-docs
	url = https://github.com/progrhyme/hugo-theme-bootie-docs.git
[submodule "slim"]
	path = slim
	url = https://github.com/zhe/hugo-theme-slim.git
[submodule "material-design"]
	path = material-design
	url = https://github.com/pdevty/material-design.git
[submodule "polymer"]
	path = polymer
	url = https://github.com/pdevty/polymer.git
[submodule "air"]
	path = air
	url = https://github.com/syui/hugo-theme-air.git
[submodule "hugo-h5bp"]
	path = hugo-h5bp
	url = https://github.com/garvincasimir/hugo-h5bp-simple.git
[submodule "detox"]
	path = detox
	url = https://github.com/allnightgrocery/hugo-theme-blueberry-detox.git
[submodule "grid-side"]
	path = grid-side
	url = https://github.com/chipsenkbeil/grid-side.git
[submodule "allegiant"]
	path = allegiant
	url = https://github.com/brycematheson/allegiant.git
[submodule "ghostwriter"]
	path = ghostwriter
	url = https://github.com/jbub/ghostwriter.git
[submodule "base16"]
	path = base16
	url = https://github.com/htdvisser/hugo-base16-theme.git
[submodule "hugo-octopress"]
	path = hugo-octopress
	url = https://github.com/parsiya/Hugo-Octopress.git
[submodule "beautifulhugo"]
	path = beautifulhugo
	url = https://github.com/halogenica/beautifulhugo.git
[submodule "future-imperfect"]
	path = future-imperfect
	url = https://github.com/jpescador/hugo-future-imperfect.git
[submodule "hugo-identity-theme"]
	path = hugo-identity-theme
	url = https://github.com/aerohub/hugo-identity-theme.git
[submodule "hugo-theme-learn"]
	path = hugo-theme-learn
	url = https://github.com/matcornic/hugo-theme-learn.git
[submodule "academic"]
	path = academic
	url = https://github.com/wowchemy/starter-academic.git
[submodule "hugo-lithium-theme"]
	path = hugo-lithium-theme
	url = https://github.com/jrutheiser/hugo-lithium-theme.git
[submodule "hugo-theme-wave"]
	path = hugo-theme-wave
	url = https://github.com/syui/hugo-theme-wave.git
[submodule "highlights"]
	path = highlights
	url = https://github.com/schmanat/hugo-highlights-theme.git
[submodule "paperback"]
	path = paperback
	url = https://github.com/damiencaselli/paperback.git
[submodule "hugo-universal-theme"]
	path = hugo-universal-theme
	url = https://github.com/devcows/hugo-universal-theme.git
[submodule "hugrid"]
	path = hugrid
	url = https://github.com/aerohub/hugrid.git
[submodule "strange-case"]
	path = strange-case
	url = https://github.com/ExchangeRate-API/strange-case.git
[submodule "anybodyhome"]
	path = anybodyhome
	url = https://github.com/lasseborly/anybodyhome.git
[submodule "hugo-theme-vec"]
	path = hugo-theme-vec
	url = https://github.com/IvanChou/hugo-theme-vec.git
[submodule "hugo-faq-theme"]
	path = hugo-faq-theme
	url = https://github.com/aerohub/hugo-faq-theme.git
[submodule "hugo-orbit-theme"]
	path = hugo-orbit-theme
	url = https://github.com/aerohub/hugo-orbit-theme.git
[submodule "hugo-theme-nix"]
	path = hugo-theme-nix
	url = https://github.com/LordMathis/hugo-theme-nix.git
[submodule "hugo-goa"]
	path = hugo-goa
	url = https://github.com/shenoybr/hugo-goa.git
[submodule "blank"]
	path = blank
	url = https://github.com/vimux/blank.git
[submodule "docuapi"]
	path = docuapi
	url = https://github.com/bep/docuapi.git
[submodule "hugo-theme-bootstrap4-blog"]
	path = hugo-theme-bootstrap4-blog
	url = https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
[submodule "hpstr-hugo-theme"]
	path = hpstr-hugo-theme
	url = https://github.com/dldx/hpstr-hugo-theme.git
[submodule "hugo-tranquilpeak-theme"]
	path = hugo-tranquilpeak-theme
	url = https://github.com/kakawait/hugo-tranquilpeak-theme.git
[submodule "hugo-creative-portfolio-theme"]
	path = hugo-creative-portfolio-theme
	url = https://github.com/kishaningithub/hugo-creative-portfolio-theme.git
[submodule "light-hugo"]
	path = light-hugo
	url = https://github.com/tblyler/light-hugo.git
[submodule "hugo-frais"]
	path = hugo-frais
	url = https://github.com/the2ne/hugo-frais.git
[submodule "hugo-elate-theme"]
	path = hugo-elate-theme
	url = https://github.com/saey55/hugo-elate-theme.git
[submodule "hugo-hello-programmer-theme"]
	path = hugo-hello-programmer-theme
	url = https://github.com/lubang/hugo-hello-programmer-theme.git
[submodule "hugo_eiio"]
	path = hugo_eiio
	url = https://github.com/leonhe/hugo_eiio.git
[submodule "foundation-theme"]
	path = foundation-theme
	url = https://github.com/hdcdstr8fwd/foundation-theme.git
[submodule "mainroad"]
	path = mainroad
	url = https://github.com/Vimux/mainroad.git
[submodule "hugo-sustain"]
	path = hugo-sustain
	url = https://github.com/nurlansu/hugo-sustain.git
[submodule "black-and-light"]
	path = black-and-light
	url = https://github.com/davidhampgonsalves/hugo-black-and-light-theme.git
[submodule "hugo-theme-cactus-plus"]
	path = hugo-theme-cactus-plus
	url = https://github.com/nodejh/hugo-theme-cactus-plus.git
[submodule "hugo-theme-minos"]
	path = hugo-theme-minos
	url = https://github.com/carsonip/hugo-theme-minos.git
[submodule "crab"]
	path = crab
	url = https://github.com/thomasheller/crab.git
[submodule "hugo-theme-introduction"]
	path = hugo-theme-introduction
	url = https://github.com/vickylaixy/hugo-theme-introduction.git
[submodule "hugo-theme-zen"]
	path = hugo-theme-zen
	url = https://github.com/frjo/hugo-theme-zen.git
[submodule "hugo-fabric"]
	path = hugo-fabric
	url = https://github.com/wd/hugo-fabric.git
[submodule "kube"]
	path = kube
	url = https://github.com/jeblister/kube.git
[submodule "gohugo-theme-ananke"]
	path = gohugo-theme-ananke
	url = https://github.com/budparr/gohugo-theme-ananke.git
[submodule "hugo-dusk"]
	path = hugo-dusk
	url = https://github.com/gyorb/hugo-dusk.git
[submodule "slate"]
	path = slate
	url = https://github.com/gesquive/slate.git
[submodule "minimo"]
	path = minimo
	url = https://github.com/MunifTanjim/minimo.git
[submodule "hugo-xmin"]
	path = hugo-xmin
	url = https://github.com/yihui/hugo-xmin.git
[submodule "hugo-travelify-theme"]
	path = hugo-travelify-theme
	url = https://github.com/balaramadurai/hugo-travelify-theme.git
[submodule "manis-hugo-theme"]
	path = manis-hugo-theme
	url = https://github.com/yursan9/manis-hugo-theme.git
[submodule "minimal"]
	path = minimal
	url = https://github.com/calintat/minimal.git
[submodule "hugo-classic"]
	path = hugo-classic
	url = https://github.com/goodroot/hugo-classic.git
[submodule "hugo-xmag"]
	path = hugo-xmag
	url = https://github.com/yihui/hugo-xmag.git
[submodule "hugo-journal"]
	path = hugo-journal
	url = https://github.com/damiencaselli/hugo-journal.git
[submodule "hugo-theme-even"]
	path = hugo-theme-even
	url = https://github.com/olOwOlo/hugo-theme-even.git
[submodule "hugo-theme-lean-launch-page"]
	path = hugo-theme-lean-launch-page
	url = https://github.com/felicianotech/hugo-theme-lean-launch-page.git
[submodule "hugo-icon"]
	path = hugo-icon
	url = https://github.com/SteveLane/hugo-icon.git
[submodule "kiss"]
	path = kiss
	url = https://github.com/ribice/kiss.git
[submodule "hugo-conference"]
	path = hugo-conference
	url = https://github.com/jweslley/hugo-conference.git
[submodule "bilberry-hugo-theme"]
	path = bilberry-hugo-theme
	url = https://github.com/Lednerb/bilberry-hugo-theme.git
[submodule "onetwothree"]
	path = onetwothree
	url = https://github.com/schollz/onetwothree.git
[submodule "hugo-kiera"]
	path = hugo-kiera
	url = https://github.com/funkydan2/hugo-kiera.git
[submodule "forty"]
	path = forty
	url = https://github.com/MarcusVirg/forty.git
[submodule "hugo-split-theme"]
	path = hugo-split-theme
	url = https://github.com/escalate/hugo-split-theme.git
[submodule "simplicity"]
	path = simplicity
	url = https://github.com/eshlox/simplicity.git
[submodule "hugo-theme-revealjs"]
	path = hugo-theme-revealjs
	url = https://github.com/RealOrangeOne/hugo-theme-revealjs.git
[submodule "elephants"]
	path = elephants
	url = https://github.com/meibenny/elephants.git
[submodule "hugo-theme-w3css-basic"]
	path = hugo-theme-w3css-basic
	url = https://github.com/it-gro/hugo-theme-w3css-basic.git
[submodule "hugo-theme-massively"]
	path = hugo-theme-massively
	url = https://github.com/curttimson/hugo-theme-massively.git
[submodule "hugo-resume"]
	path = hugo-resume
	url = https://github.com/eddiewebb/hugo-resume.git
[submodule "hugo-theme-jane"]
	path = hugo-theme-jane
	url = https://github.com/xianmin/hugo-theme-jane.git
[submodule "hugo-coder"]
	path = hugo-coder
	url = https://github.com/luizdepra/hugo-coder.git
[submodule "kraiklyn"]
	path = kraiklyn
	url = https://github.com/jsnjack/kraiklyn.git
[submodule "hugo-theme-sam"]
	path = hugo-theme-sam
	url = https://github.com/hivickylai/hugo-theme-sam.git
[submodule "hyde-hyde"]
	path = hyde-hyde
	url = https://github.com/htr3n/hyde-hyde.git
[submodule "hugo-paper"]
	path = hugo-paper
	url = https://github.com/nanxiaobei/hugo-paper.git
[submodule "hugo-nederburg-theme"]
	path = hugo-nederburg-theme
	url = https://github.com/appernetic/hugo-nederburg-theme.git
[submodule "hestia-pure"]
	path = hestia-pure
	url = https://github.com/diwao/hestia-pure.git
[submodule "hugo-initio"]
	path = hugo-initio
	url = https://github.com/miguelsimoni/hugo-initio.git
[submodule "hugo-theme-dopetrope"]
	path = hugo-theme-dopetrope
	url = https://github.com/curttimson/hugo-theme-dopetrope.git
[submodule "classless-hugo"]
	path = classless-hugo
	url = https://github.com/fiatjaf/classless-hugo.git
[submodule "hugo-fresh"]
	path = hugo-fresh
	url = https://github.com/lucperkins/hugo-fresh.git
[submodule "airspace-hugo"]
	path = airspace-hugo
	url = https://github.com/themefisher/airspace-hugo.git
[submodule "hugo-lodi-theme"]
	path = hugo-lodi-theme
	url = https://github.com/xaviablaza/hugo-lodi-theme.git
[submodule "hugo-material-blog"]
	path = hugo-material-blog
	url = https://github.com/Xzya/hugo-material-blog.git
[submodule "hugo-startpage-theme"]
	path = hugo-startpage-theme
	url = https://github.com/tnwhitwell/hugo-startpage-theme.git
[submodule "hugo-shopping-product-catalogue-simple"]
	path = hugo-shopping-product-catalogue-simple
	url = https://github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git
[submodule "alpha-church"]
	path = alpha-church
	url = https://github.com/funkydan2/alpha-church.git
[submodule "er"]
	path = er
	url = https://github.com/lingxz/er.git
[submodule "reveal-hugo"]
	path = reveal-hugo
	url = https://github.com/dzello/reveal-hugo.git
[submodule "capsule"]
	path = capsule
	url = https://github.com/sudorook/capsule.git
[submodule "min_night"]
	path = min_night
	url = https://github.com/nathancday/min_night.git
[submodule "yourfolio"]
	path = yourfolio
	url = https://github.com/serg/yourfolio.git
[submodule "vex-hugo"]
	path = vex-hugo
	url = https://github.com/themefisher/vex-hugo.git
[submodule "hugo-lamp"]
	path = hugo-lamp
	url = https://github.com/huyb1991/hugo-lamp.git
[submodule "BeyondNothing"]
	path = BeyondNothing
	url = https://github.com/salcan/BeyondNothing.git
[submodule "hugo-stellar-theme"]
	path = hugo-stellar-theme
	url = https://github.com/antonpolishko/hugo-stellar-theme.git
[submodule "hugo-theme-cleanwhite"]
	path = hugo-theme-cleanwhite
	url = https://github.com/zhaohuabing/hugo-theme-cleanwhite.git
[submodule "hugo-primer"]
	path = hugo-primer
	url = https://github.com/qqhann/hugo-primer.git
[submodule "navigator-hugo"]
	path = navigator-hugo
	url = https://github.com/themefisher/navigator-hugo.git
[submodule "hugo-sodium-theme"]
	path = hugo-sodium-theme
	url = https://github.com/uicardiodev/hugo-sodium-theme.git
[submodule "hugo-bingo"]
	path = hugo-bingo
	url = https://github.com/gundamew/hugo-bingo.git
[submodule "hugo-theme-hello-friend"]
	path = hugo-theme-hello-friend
	url = https://github.com/panr/hugo-theme-hello-friend.git
[submodule "hugo-theme-den"]
	path = hugo-theme-den
	url = https://github.com/shaform/hugo-theme-den.git
[submodule "minimage"]
	path = minimage
	url = https://github.com/d-kusk/minimage.git
[submodule "tale-hugo"]
	path = tale-hugo
	url = https://github.com/EmielH/tale-hugo.git
[submodule "hugo-theme-winning"]
	path = hugo-theme-winning
	url = https://github.com/cssandstuff/hugo-theme-winning.git
[submodule "simpleit-hugo-theme"]
	path = simpleit-hugo-theme
	url = https://github.com/marcanuy/simpleit-hugo-theme.git
[submodule "hugo_theme_adam_eve"]
	path = hugo_theme_adam_eve
	url = https://github.com/blankoworld/hugo_theme_adam_eve.git
[submodule "hugo-blog-jeffprod"]
	path = hugo-blog-jeffprod
	url = https://github.com/Tazeg/hugo-blog-jeffprod.git
[submodule "timer-hugo"]
	path = timer-hugo
	url = https://github.com/themefisher/timer-hugo.git
[submodule "charaka-hugo-theme"]
	path = charaka-hugo-theme
	url = https://github.com/natarajmb/charaka-hugo-theme.git
[submodule "hugo-assembly"]
	path = hugo-assembly
	url = https://github.com/salsysd/hugo-assembly.git
[submodule "LeaveIt"]
	path = LeaveIt
	url = https://github.com/liuzc/LeaveIt.git
[submodule "story"]
	path = story
	url = https://github.com/xaprb/story.git
[submodule "hugo-coder-portfolio"]
	path = hugo-coder-portfolio
	url = https://github.com/naro143/hugo-coder-portfolio.git
[submodule "arabica"]
	path = arabica
	url = https://github.com/nirocfz/arabica.git
[submodule "hugograyscale"]
	path = hugograyscale
	url = https://github.com/runningstream/hugograyscale.git
[submodule "hugo-lime"]
	path = hugo-lime
	url = https://github.com/uicardiodev/hugo-lime.git
[submodule "hugo-dusky-neon-potato"]
	path = hugo-dusky-neon-potato
	url = https://github.com/VVelox/hugo-dusky-neon-potato.git
[submodule "hugo-theme-hamburg"]
	path = hugo-theme-hamburg
	url = https://github.com/hauke96/hugo-theme-hamburg.git
[submodule "hugo-uilite"]
	path = hugo-uilite
	url = https://github.com/uicardiodev/hugo-uilite.git
[submodule "hugo-cards"]
	path = hugo-cards
	url = https://github.com/bul-ikana/hugo-cards.git
[submodule "indigo"]
	path = indigo
	url = https://github.com/AngeloStavrow/indigo.git
[submodule "hugo-minimalist-spa"]
	path = hugo-minimalist-spa
	url = https://github.com/SAGGameDeveloper/hugo-minimalist-spa.git
[submodule "mediumish-gohugo-theme"]
	path = mediumish-gohugo-theme
	url = https://github.com/lgaida/mediumish-gohugo-theme.git
[submodule "minimal-bootstrap-hugo-theme"]
	path = minimal-bootstrap-hugo-theme
	url = https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme.git
[submodule "hugo-alageek-theme"]
	path = hugo-alageek-theme
	url = https://github.com/gkmngrgn/hugo-alageek-theme.git
[submodule "hugo-book"]
	path = hugo-book
	url = https://github.com/alex-shpak/hugo-book.git
[submodule "meghna-hugo"]
	path = meghna-hugo
	url = https://github.com/themefisher/meghna-hugo.git
[submodule "internet-weblog"]
	path = internet-weblog
	url = https://github.com/jnjosh/internet-weblog.git
[submodule "hugo-grapes"]
	path = hugo-grapes
	url = https://github.com/shankar/hugo-grapes.git
[submodule "infinity-hugo"]
	path = infinity-hugo
	url = https://github.com/themefisher/infinity-hugo.git
[submodule "hugo-now"]
	path = hugo-now
	url = https://github.com/mikeblum/hugo-now.git
[submodule "hermit"]
	path = hermit
	url = https://github.com/Track3/hermit.git
[submodule "hallo-hugo"]
	path = hallo-hugo
	url = https://github.com/EmielH/hallo-hugo.git
[submodule "bootstrap-bp-hugo-theme"]
	path = bootstrap-bp-hugo-theme
	url = https://github.com/spech66/bootstrap-bp-hugo-theme.git
[submodule "hugo-theme-robotico"]
	path = hugo-theme-robotico
	url = https://github.com/wileybaba/hugo-theme-robotico.git
[submodule "hugo-w3-simple"]
	path = hugo-w3-simple
	url = https://github.com/jesselau76/hugo-w3-simple.git
[submodule "hugo-tikva"]
	path = hugo-tikva
	url = https://github.com/geschke/hugo-tikva.git
[submodule "hugo-theme-yinyang"]
	path = hugo-theme-yinyang
	url = https://github.com/joway/hugo-theme-yinyang.git
[submodule "hugo-theme-techdoc"]
	path = hugo-theme-techdoc
	url = https://github.com/thingsym/hugo-theme-techdoc.git
[submodule "hugo-theme-techlog-simple"]
	path = hugo-theme-techlog-simple
	url = https://github.com/mazgi/hugo-theme-techlog-simple.git
[submodule "hugo-apps-theme"]
	path = hugo-apps-theme
	url = https://github.com/gonnux/hugo-apps-theme.git
[submodule "hugo-serif-theme"]
	path = hugo-serif-theme
	url = https://github.com/zerostaticthemes/hugo-serif-theme.git
	branch = hugoThemes
[submodule "aether"]
	path = aether
	url = https://github.com/josephhutch/aether.git
[submodule "silhouette-hugo"]
	path = silhouette-hugo
	url = https://github.com/mattbutton/silhouette-hugo.git
[submodule "sada"]
	path = sada
	url = https://github.com/darshanbaral/sada.git
[submodule "slick"]
	path = slick
	url = https://github.com/spookey/slick.git
[submodule "hugo-myportfolio-theme"]
	path = hugo-myportfolio-theme
	url = https://github.com/2-REC/hugo-myportfolio-theme.git
[submodule "vanilla-bootstrap-hugo-theme"]
	path = vanilla-bootstrap-hugo-theme
	url = https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme.git
[submodule "hugo-hero-theme"]
	path = hugo-hero-theme
	url = https://github.com/JugglerX/hugo-hero-theme.git
[submodule "hugo-theme-sky"]
	path = hugo-theme-sky
	url = https://github.com/cfrome77/hugo-theme-sky.git
[submodule "onepress"]
	path = onepress
	url = https://github.com/ijsucceed/onepress.git
[submodule "vncnt-hugo"]
	path = vncnt-hugo
	url = https://github.com/fncnt/vncnt-hugo.git
[submodule "dot-hugo-documentation-theme"]
	path = dot-hugo-documentation-theme
	url = https://github.com/gethugothemes/dot-hugo-documentation-theme.git
[submodule "Niello"]
	path = Niello
	url = https://github.com/guangmean/Niello.git
[submodule "hugo-terrassa-theme"]
	path = hugo-terrassa-theme
	url = https://github.com/danielkvist/hugo-terrassa-theme.git
[submodule "hugo-theme-m10c"]
	path = hugo-theme-m10c
	url = https://github.com/vaga/hugo-theme-m10c.git
[submodule "gochowdown"]
	path = gochowdown
	url = https://github.com/seanlane/gochowdown.git
[submodule "hugo-theme-terminal"]
	path = hugo-theme-terminal
	url = https://github.com/panr/hugo-theme-terminal.git
[submodule "cupper-hugo-theme"]
	path = cupper-hugo-theme
	url = https://github.com/zwbetz-gh/cupper-hugo-theme.git
[submodule "hugo-theme-basic"]
	path = hugo-theme-basic
	url = https://github.com/siegerts/hugo-theme-basic.git
[submodule "hugo-starter"]
	path = hugo-starter
	url = https://github.com/jimfrenette/hugo-starter.git
[submodule "hugo-pacman-theme"]
	path = hugo-pacman-theme
	url = https://github.com/coderzh/hugo-pacman-theme.git
[submodule "hugo-theme-hello-friend-ng"]
	path = hugo-theme-hello-friend-ng
	url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git
[submodule "hugo-flex"]
	path = hugo-flex
	url = https://github.com/de-souza/hugo-flex.git
[submodule "KeepIt"]
	path = KeepIt
	url = https://github.com/Fastbyte01/KeepIt.git
[submodule "devfest-theme-hugo"]
	path = devfest-theme-hugo
	url = https://github.com/GDGToulouse/devfest-theme-hugo.git
[submodule "papercss-hugo-theme"]
	path = papercss-hugo-theme
	url = https://github.com/zwbetz-gh/papercss-hugo-theme.git
[submodule "hugo-swift-theme"]
	path = hugo-swift-theme
	url = https://github.com/onweru/hugo-swift-theme.git
[submodule "mero"]
	path = mero
	url = https://github.com/darshanbaral/mero.git
[submodule "Binario"]
	path = Binario
	url = https://github.com/Vimux/Binario.git
[submodule "aafu"]
	path = aafu
	url = https://github.com/darshanbaral/aafu.git
[submodule "hugo-theme-yuki"]
	path = hugo-theme-yuki
	url = https://github.com/iCyris/hugo-theme-yuki.git
[submodule "restaurant-hugo"]
	path = restaurant-hugo
	url = https://github.com/themefisher/restaurant-hugo.git
[submodule "pulp"]
	path = pulp
	url = https://github.com/koirand/pulp.git
[submodule "hugo-whisper-theme"]
	path = hugo-whisper-theme
	url = https://github.com/JugglerX/hugo-whisper-theme.git
[submodule "stip-hugo"]
	path = stip-hugo
	url = https://github.com/EmielH/stip-hugo.git
[submodule "cayman-hugo-theme"]
	path = cayman-hugo-theme
	url = https://github.com/zwbetz-gh/cayman-hugo-theme.git
[submodule "ezhil"]
	path = ezhil
	url = https://github.com/vividvilla/ezhil.git
[submodule "hugo-piercer-theme"]
	path = hugo-piercer-theme
	url = https://github.com/danielkvist/hugo-piercer-theme.git
[submodule "hugo-future-imperfect-slim"]
	path = hugo-future-imperfect-slim
	url = https://github.com/pacollins/hugo-future-imperfect-slim.git
[submodule "twentynineteen-hugo"]
	path = twentynineteen-hugo
	url = https://github.com/jeremybise/twentynineteen-hugo.git
[submodule "inkblotty"]
	path = inkblotty
	url = https://github.com/tosi29/inkblotty.git
[submodule "personal-web"]
	path = personal-web
	url = https://github.com/bjacquemet/personal-web.git
[submodule "edidor"]
	path = edidor
	url = https://github.com/jacobsun/edidor.git
[submodule "kitab"]
	path = kitab
	url = https://github.com/darshanbaral/kitab.git
[submodule "kross-hugo-portfolio-template"]
	path = kross-hugo-portfolio-template
	url = https://github.com/themefisher/kross-hugo-portfolio-template.git
[submodule "parsa-hugo"]
	path = parsa-hugo
	url = https://github.com/themefisher/parsa-hugo.git
[submodule "syna"]
	path = syna
	url = https://github.com/okkur/syna.git
[submodule "solar-theme-hugo"]
	path = solar-theme-hugo
	url = https://github.com/bake/solar-theme-hugo.git
[submodule "hugo-theme-cole"]
	path = hugo-theme-cole
	url = https://github.com/jacobsun/hugo-theme-cole.git
[submodule "hugo-bootstrap4"]
	path = hugo-bootstrap4
	url = https://github.com/mmrath/hugo-bootstrap.git
[submodule "docter"]
	path = docter
	url = https://github.com/edavidaja/docter.git
[submodule "avicenna"]
	path = avicenna
	url = https://github.com/hadisinaee/avicenna.git
[submodule "khata"]
	path = khata
	url = https://github.com/darshanbaral/khata.git
[submodule "huginn"]
	path = huginn
	url = https://gitlab.com/VincentTam/huginn.git
[submodule "hugo-refresh"]
	path = hugo-refresh
	url = https://github.com/PippoRJ/hugo-refresh.git
[submodule "bootstrap-bp-hugo-startpage"]
	path = bootstrap-bp-hugo-startpage
	url = https://github.com/spech66/bootstrap-bp-hugo-startpage.git
[submodule "contrast-hugo"]
	path = contrast-hugo
	url = https://github.com/niklasbuschmann/contrast-hugo.git
[submodule "hugo-theme-doors"]
	path = hugo-theme-doors
	url = https://github.com/zzzmisa/hugo-theme-doors.git
[submodule "OneDly-Theme"]
	path = OneDly-Theme
	url = https://github.com/cdeck3r/OneDly-Theme.git
[submodule "hugo-webslides"]
	path = hugo-webslides
	url = https://github.com/RCJacH/hugo-webslides.git
[submodule "newsroom"]
	path = newsroom
	url = https://github.com/onweru/newsroom.git
[submodule "hugo-theme-meme"]
	path = hugo-theme-meme
	url = https://github.com/reuixiy/hugo-theme-meme.git
[submodule "colordrop"]
	path = colordrop
	url = https://github.com/humrochagf/colordrop.git
[submodule "hugo-changelog-theme"]
	path = hugo-changelog-theme
	url = https://github.com/jsnjack/hugo-changelog-theme.git
[submodule "hugo-theme-dream"]
	path = hugo-theme-dream
	url = https://github.com/g1eny0ung/hugo-theme-dream.git
[submodule "hugo-spectre-pixel-theme"]
	path = hugo-spectre-pixel-theme
	url = https://github.com/st-wong/hugo-spectre-pixel-theme.git
[submodule "bare-hugo-theme"]
	path = bare-hugo-theme
	url = https://github.com/orf/bare-hugo-theme.git
[submodule "materialize-bp-hugo-theme"]
	path = materialize-bp-hugo-theme
	url = https://github.com/spech66/materialize-bp-hugo-theme.git
[submodule "hugo-frances-theme"]
	path = hugo-frances-theme
	url = https://github.com/mcrwfrd/hugo-frances-theme.git
[submodule "darksimplicity"]
	path = darksimplicity
	url = https://github.com/kritoke/darksimplicity
[submodule "Hargo-hugo-ecommerce-theme"]
	path = Hargo-hugo-ecommerce-theme
	url = https://github.com/themefisher/Hargo-hugo-ecommerce-theme.git
[submodule "liva-hugo"]
	path = liva-hugo
	url = https://github.com/themefisher/liva-hugo.git
[submodule "hugo-devresume-theme"]
	path = hugo-devresume-theme
	url = https://github.com/cowboysmall-tools/hugo-devresume-theme.git
[submodule "github-style"]
	path = github-style
	url = https://github.com/MeiK2333/github-style.git
[submodule "hugonews"]
	path = hugonews
	url = https://github.com/spaghettiwews/hugonews.git
[submodule "hugo-theme-zzo"]
	path = hugo-theme-zzo
	url = https://github.com/zzossig/hugo-theme-zzo.git
[submodule "hugo-business-frontpage-theme"]
	path = hugo-business-frontpage-theme
	url = https://github.com/cowboysmall-tools/hugo-business-frontpage-theme.git
[submodule "hugo-theme-pure"]
	path = hugo-theme-pure
	url = https://github.com/xiaoheiAh/hugo-theme-pure.git
[submodule "hugo-theme-easybook"]
	path = hugo-theme-easybook
	url = https://github.com/Y4er/hugo-theme-easybook.git
[submodule "resto-hugo"]
	path = resto-hugo
	url = https://gitlab.com/kskarthik/resto-hugo.git
[submodule "northendlab-hugo"]
	path = northendlab-hugo
	url = https://github.com/themefisher/northendlab-hugo.git
[submodule "hugo-ink"]
	path = hugo-ink
	url = https://github.com/knadh/hugo-ink.git
[submodule "hugo-tailwind-journal"]
	path = hugo-tailwind-journal
	url = https://github.com/ianrodrigues/hugo-tailwind-journal.git
[submodule "LoveIt"]
	path = LoveIt
	url = https://github.com/dillonzq/LoveIt.git
[submodule "castanet"]
	path = castanet
	url = https://github.com/mattstratton/castanet.git
[submodule "docsy"]
	path = docsy
	url = https://github.com/google/docsy.git
[submodule "Influencer-hugo"]
	path = Influencer-hugo
	url = https://github.com/themefisher/Influencer-hugo.git
[submodule "hugo-theme-diary"]
	path = hugo-theme-diary
	url = https://github.com/AmazingRise/hugo-theme-diary.git
[submodule "erblog"]
	path = erblog
	url = https://github.com/ertuil/erblog.git
[submodule "hugo-theme-novela"]
	path = hugo-theme-novela
	url = https://github.com/forestryio/hugo-theme-novela.git
[submodule "monopriv"]
	path = monopriv
	url = https://gitlab.com/kskarthik/monopriv.git
[submodule "hugo_theme_pickles"]
	path = hugo_theme_pickles
	url = https://github.com/mismith0227/hugo_theme_pickles.git
[submodule "hugo-vitae"]
	path = hugo-vitae
	url = https://github.com/dataCobra/hugo-vitae.git
[submodule "simple-style"]
	path = simple-style
	url = https://github.com/yanlinlin82/simple-style.git
[submodule "hugo-notepadium"]
	path = hugo-notepadium
	url = https://github.com/cntrump/hugo-notepadium.git
[submodule "osprey-delight"]
	path = osprey-delight
	url = https://github.com/kdevo/osprey-delight.git
[submodule "hugo-theme-chunky-poster"]
	path = hugo-theme-chunky-poster
	url = https://github.com/puresyntax71/hugo-theme-chunky-poster.git
[submodule "amperage"]
	path = amperage
	url = https://github.com/asurbernardo/amperage.git
[submodule "Blogpaper"]
	path = Blogpaper
	url = https://github.com/NormandErwan/Blogpaper.git
[submodule "raditian-free-hugo-theme"]
	path = raditian-free-hugo-theme
	url = https://github.com/radity/raditian-free-hugo-theme.git
[submodule "ticky_tacky_dark"]
	path = ticky_tacky_dark
	url = https://github.com/kc0bfv/ticky_tacky_dark.git
[submodule "hugo-casper3"]
	path = hugo-casper3
	url = https://github.com/jonathanjanssens/hugo-casper3.git
[submodule "hugo-theme-okayish-blog"]
	path = hugo-theme-okayish-blog
	url = https://github.com/kongdivin/hugo-theme-okayish-blog.git
[submodule "educenter-hugo"]
	path = educenter-hugo
	url = https://github.com/themefisher/educenter-hugo.git
[submodule "hugo-theme-prav"]
	path = hugo-theme-prav
	url = https://github.com/pravin/hugo-theme-prav.git
[submodule "paperesque"]
	path = paperesque
	url = https://github.com/capnfabs/paperesque.git
	branch = mainline
[submodule "papaya"]
	path = papaya
	url = https://github.com/plopcas/papaya.git
[submodule "hugo-theme-iris"]
	path = hugo-theme-iris
	url = https://github.com/peaceiris/hugo-theme-iris.git
[submodule "somrat"]
	path = somrat
	url = https://github.com/Somrat37/somrat.git
[submodule "compose"]
	path = compose
	url = https://github.com/onweru/compose.git
[submodule "potato-dark"]
	path = potato-dark
	url = https://github.com/surajmandalcell/potato-dark.git
[submodule "hugo-theme-noteworthy"]
	path = hugo-theme-noteworthy
	url = https://github.com/kimcc/hugo-theme-noteworthy.git
[submodule "hugo-theme-zdoc"]
	path = hugo-theme-zdoc
	url = https://github.com/zzossig/hugo-theme-zdoc.git
[submodule "soho"]
	path = soho
	url = https://github.com/alexandrevicenzi/soho.git
[submodule "someparts-hugo"]
	path = someparts-hugo
	url = https://github.com/tastaturtier/someparts-hugo.git
[submodule "photo-grid"]
	path = photo-grid
	url = https://github.com/Chen-Zhe/photo-grid
[submodule "harbor"]
	path = harbor
	url = https://github.com/matsuyoshi30/harbor
[submodule "hugo-theme-anubis"]
	path = hugo-theme-anubis
	url = https://github.com/Mitrichius/hugo-theme-anubis.git
[submodule "ronu-hugo-theme"]
	path = ronu-hugo-theme
	url = https://github.com/softwareyoga/ronu-hugo-theme.git
[submodule "hugo-rocinante"]
	path = hugo-rocinante
	url = https://github.com/mavidser/hugo-rocinante.git
[submodule "flexible-seo-hugo"]
	path = flexible-seo-hugo
	url = https://github.com/pjbakker/flexible-seo-hugo.git
[submodule "hugo.386"]
	path = hugo.386
	url = https://gitlab.com/maxlefou/hugo.386.git
[submodule "devise"]
	path = devise
	url = https://github.com/austingebauer/devise.git
[submodule "hugo-theme-fuji"]
	path = hugo-theme-fuji
	url = https://github.com/amzrk2/hugo-theme-fuji.git
[submodule "lekh"]
	path = lekh
	url = https://github.com/invinciblycool/lekh.git
[submodule "archie"]
	path = archie
	url = https://github.com/athul/archie.git
[submodule "ghazal"]
	path = ghazal
	url = https://github.com/darshanbaral/ghazal.git
[submodule "npq-hugo"]
	path = npq-hugo
	url = https://github.com/saadnpq/npq-hugo.git
[submodule "kiss-em"]
	path = kiss-em
	url = https://github.com/pavel-pi/kiss-em.git
[submodule "ace-documentation"]
	path = ace-documentation
	url = https://github.com/vantagedesign/ace-documentation.git
[submodule "origin-hugo-theme"]
	path = origin-hugo-theme
	url = https://github.com/fourtyone11/origin-hugo-theme.git
[submodule "autophugo"]
	path = autophugo
	url = https://github.com/kc0bfv/autophugo.git
[submodule "axiom"]
	path = axiom
	url = https://github.com/marketempower/axiom.git
[submodule "anatole"]
	path = anatole
	url = https://github.com/lxndrblz/anatole.git
[submodule "ramium"]
	path = ramium
	url = https://github.com/rafed/ramium.git
[submodule "twenty-twenty-hugo"]
	path = twenty-twenty-hugo
	url = https://github.com/themefisher/twenty-twenty-hugo.git
[submodule "hugo-theme-console"]
	path = hugo-theme-console
	url = https://github.com/mrmierzejewski/hugo-theme-console.git
[submodule "hugo-theme-mixedpaper"]
	path = hugo-theme-mixedpaper
	url = https://github.com/wayjam/hugo-theme-mixedpaper.git
[submodule "hugo-sugoi"]
	path = hugo-sugoi
	url = https://github.com/aanupam23/hugo-sugoi.git
[submodule "roxo-hugo"]
	path = roxo-hugo
	url = https://github.com/StaticMania/roxo-hugo.git
[submodule "etch"]
	path = etch
	url = https://github.com/LukasJoswiak/etch.git
[submodule "blackburn"]
	path = blackburn
	url = https://github.com/yoshiharuyamashita/blackburn.git
[submodule "hugo-theme-dimension"]
	path = hugo-theme-dimension
	url = https://github.com/your-identity/hugo-theme-dimension.git
[submodule "hugo-eureka"]
	path = hugo-eureka
	url = https://github.com/wangchucheng/hugo-eureka.git
[submodule "redgood"]
	path = redgood
	url = https://github.com/urjaacharya/redgood.git
[submodule "smol"]
	path = smol
	url = https://github.com/colorchestra/smol.git
[submodule "hugo-theme-simple-blog"]
	path = hugo-theme-simple-blog
	url = https://github.com/10mohi6/hugo-theme-simple-blog.git
[submodule "hugo-html5up-alpha"]
	path = hugo-html5up-alpha
	url = https://github.com/dewittn/hugo-html5up-alpha.git
[submodule "hugo-theme-tokiwa"]
	path = hugo-theme-tokiwa
	url = https://github.com/heyeshuang/hugo-theme-tokiwa.git
[submodule "bodhi"]
	path = bodhi
	url = https://github.com/rhnvrm/bodhi.git
[submodule "hugo-theme-codex"]
	path = hugo-theme-codex
	url = https://github.com/jakewies/hugo-theme-codex.git
[submodule "showcase-hugo-theme"]
	path = showcase-hugo-theme
	url = https://github.com/apvarun/showcase-hugo-theme.git
[submodule "HugoTeX"]
	path = HugoTeX
	url = https://github.com/7ma7X/HugoTeX.git
[submodule "toha"]
	path = toha
	url = https://github.com/hossainemruz/toha.git
[submodule "hugo-theme-notrack"]
	path = hugo-theme-notrack
	url = https://github.com/gevhaz/hugo-theme-notrack.git
[submodule "hugo-theme-zozo"]
	path = hugo-theme-zozo
	url = https://github.com/varkai/hugo-theme-zozo.git
[submodule "hugo-theme-color-your-world"]
	path = hugo-theme-color-your-world
	url = https://gitlab.com/rmaguiar/hugo-theme-color-your-world.git
[submodule "persian-hugo"]
	path = persian-hugo
	url = https://github.com/themefisher/persian-hugo.git
[submodule "hugo-icarus"]
	path = hugo-icarus
	url = https://gitlab.com/toryanderson/hugo-icarus.git
[submodule "hugo-developer-portfolio"]
	path = hugo-developer-portfolio
	url = https://github.com/samrobbins85/hugo-developer-portfolio.git
[submodule "the-roots-home"]
	path = the-roots-home
	url = https://github.com/rmsubekti/the-roots-home.git
[submodule "academia-hugo"]
	path = academia-hugo
	url = https://github.com/themefisher/academia-hugo.git
[submodule "hugo-theme-sk1"]
	path = hugo-theme-sk1
	url = https://github.com/J-Siu/hugo-theme-sk1.git
[submodule "basicwebtheme"]
	path = basicwebtheme
	url = https://github.com/mdashx/basicwebtheme.git
[submodule "hugo-theme-tony"]
	path = hugo-theme-tony
	url = https://github.com/ThemeTony/hugo-theme-tony.git
[submodule "hugo-clarity"]
	path = hugo-clarity
	url = https://github.com/chipzoller/hugo-clarity.git
[submodule "hugo-theme-cactus"]
	path = hugo-theme-cactus
	url = https://github.com/monkeyWzr/hugo-theme-cactus.git
[submodule "bento"]
	path = bento
	url = https://github.com/leonardofaria/bento.git
[submodule "hugo-theme-sk2"]
	path = hugo-theme-sk2
	url = https://github.com/J-Siu/hugo-theme-sk2.git
[submodule "hugo-theme-sk3"]
	path = hugo-theme-sk3
	url = https://github.com/J-Siu/hugo-theme-sk3.git
[submodule "health-science-journal"]
	path = health-science-journal
	url = https://github.com/epistemehealth/health-science-journal.git
[submodule "hugo-story"]
	path = hugo-story
	url = https://github.com/caressofsteel/hugo-story.git
[submodule "hugo-scroll"]
	path = hugo-scroll
	url = https://github.com/janraasch/hugo-scroll.git
[submodule "hugo-theme-freshstart"]
	path = hugo-theme-freshstart
	url = https://github.com/rz3n/hugo-theme-freshstart.git
[submodule "SimpleIntro"]
	path = SimpleIntro
	url = https://github.com/gangjun06/SimpleIntro.git
[submodule "hugo-researcher"]
	path = hugo-researcher
	url = https://github.com/ojroques/hugo-researcher.git
[submodule "hugo-clinic-notes"]
	path = hugo-clinic-notes
	url = https://github.com/jmablog/hugo-clinic-notes.git
[submodule "hugo-theme-texify"]
	path = hugo-theme-texify
	url = https://github.com/queensferryme/hugo-theme-texify.git
[submodule "hugo-theme-docport"]
	path = hugo-theme-docport
	url = https://github.com/vjeantet/hugo-theme-docport.git
[submodule "Shapez-Theme"]
	path = Shapez-Theme
	url = https://github.com/djuelg/Shapez-Theme.git
[submodule "hugo-theme-pico"]
	path = hugo-theme-pico
	url = https://github.com/negrel/hugo-theme-pico.git
[submodule "almeida-cv"]
	path = almeida-cv
	url = https://github.com/ineesalmeida/almeida-cv.git
[submodule "Blonde"]
	path = Blonde
	url = https://github.com/opera7133/Blonde.git
[submodule "portio-hugo"]
	path = portio-hugo
	url = https://github.com/StaticMania/portio-hugo.git
[submodule "hugo-geekblog"]
	path = hugo-geekblog
	url = https://github.com/thegeeklab/hugo-geekblog.git
[submodule "resume-a4"]
	path = resume-a4
	url = https://gitlab.com/mertbakir/resume-a4.git
[submodule "hugo-geekdoc"]
	path = hugo-geekdoc
	url = https://github.com/thegeeklab/hugo-geekdoc.git
[submodule "hugo-bearblog"]
	path = hugo-bearblog
	url = https://github.com/janraasch/hugo-bearblog.git
[submodule "hugo-product-launch"]
	path = hugo-product-launch
	url = https://github.com/janraasch/hugo-product-launch.git
[submodule "hugo-PaperMod"]
	path = hugo-PaperMod
	url = https://github.com/adityatelange/hugo-PaperMod.git
[submodule "hugo-theme-stack"]
	path = hugo-theme-stack
	url = https://github.com/CaiJimmy/hugo-theme-stack.git
[submodule "bigspring-hugo-startup-theme"]
	path = bigspring-hugo-startup-theme
	url = https://github.com/themefisher/bigspring-hugo-startup-theme.git
[submodule "accessible-minimalism-hugo-theme"]
	path = accessible-minimalism-hugo-theme
	url = https://github.com/leonstafford/accessible-minimalism-hugo-theme.git
[submodule "HugoTheme-VibrantShadows"]
	path = HugoTheme-VibrantShadows
	url = https://github.com/Softorage/HugoTheme-VibrantShadows.git
[submodule "hugo-profile"]
	path = hugo-profile
	url = https://github.com/gurusabarish/hugo-profile.git
[submodule "sicily-hugo-theme"]
	path = sicily-hugo-theme
	url = https://github.com/cristianmarint/sicily-hugo-theme.git
[submodule "hugo-theme-timeline"]
	path = hugo-theme-timeline
	url = https://github.com/s4n7h0/hugo-theme-timeline.git
[submodule "simpleness"]
	path = simpleness
	url = https://github.com/RainerChiang/simpleness.git
[submodule "simple-resume"]
	path = simple-resume
	url = https://github.com/tylerjlawson/simple-resume.git
[submodule "hugo-tania"]
	path = hugo-tania
	url = https://github.com/WingLim/hugo-tania.git
[submodule "omega-hugo-theme"]
	path = omega-hugo-theme
	url = https://github.com/gethugothemes/omega-hugo-theme.git
[submodule "less"]
	path = less
	url = https://github.com/4ever9/less.git
[submodule "hugo-theme-hulga"]
	path = hugo-theme-hulga
	url = https://github.com/wlh320/hugo-theme-hulga.git
[submodule "hugo-dpsg"]
	path = hugo-dpsg
	url = https://github.com/pfadfinder-konstanz/hugo-dpsg.git
[submodule "uBlogger"]
	path = uBlogger
	url = https://github.com/uPagge/uBlogger.git
[submodule "doks"]
	path = doks
	url = https://github.com/h-enk/doks.git
[submodule "hugo-tanka"]
	path = hugo-tanka
	url = https://github.com/nanxstats/hugo-tanka.git
[submodule "flex-bp-hugo-cv"]
	path = flex-bp-hugo-cv
	url = https://github.com/spech66/flex-bp-hugo-cv.git