├── .gitmodules ├── .gitpod.yml ├── README.md ├── archetypes └── default.md ├── config.toml ├── content └── posts │ └── my-first-post.md └── public ├── 404.html ├── categories ├── index.html └── index.xml ├── index.html ├── index.xml ├── output └── css │ └── main.166474c2adad740c325e334f04665ab11fac6321b2e4394ef294bbd02fc0648d.css ├── posts ├── index.html ├── index.xml ├── my-first-post │ └── index.html └── page │ └── 1 │ └── index.html ├── sitemap.xml └── tags ├── index.html └── index.xml /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/themes/ananke"] 2 | path = themes/themes/ananke 3 | url = https://github.com/theNewDynamic/gohugo-theme-ananke.git 4 | [submodule "themes/photophobia"] 5 | path = themes/photophobia 6 | url = https://github.com/setsevireon/photophobia 7 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | # List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ 2 | tasks: 3 | - name: Install Hugo dependencies 4 | before: brew install hugo 5 | init: echo "Your version of Hugo is `hugo version`" 6 | command: hugo server -D -F --baseURL $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0 7 | # List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/ 8 | ports: 9 | - port: 1313 10 | onOpen: open-preview 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Hugo starter template on Gitpod 2 | 3 | This is a [Hugo](https://gohugo.io/getting-started/quick-start/) template configured for ephemeral development environments on [Gitpod](https://www.gitpod.io/). 4 | 5 | To change your theme, [check out the documentation from Hugo](https://gohugo.io/getting-started/quick-start/) and browse the themes [here.](https://themes.gohugo.io/) 6 | 7 | ## Next Steps 8 | 9 | Click the button below to start a new development environment: 10 | 11 | [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/gitpod-io/template-hugo) 12 | 13 | ## Get Started With Your Own Project 14 | 15 | ### A new project 16 | 17 | Click the above "Open in Gitpod" button to start a new workspace. Once you're ready to push your first code changes, Gitpod will guide you to fork this project so you own it. In this Gitpod example, `hugo -D` has been run already which shows you the final build of the static site - feel free to delete the `public` folder once you get started. 18 | 19 | ### An existing project 20 | 21 | To get started with Hugo on Gitpod, add a [`.gitpod.yml`](./.gitpod.yml) file which contains the configuration to improve the developer experience on Gitpod. To learn more, please see the [Getting Started](https://www.gitpod.io/docs/getting-started) documentation. 22 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | baseURL = "http://example.org/" 2 | languageCode = "en-us" 3 | title = "My New Hugo Site" 4 | theme = "photophobia" -------------------------------------------------------------------------------- /content/posts/my-first-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "My First Post" 3 | date: 2021-08-18T12:22:52Z 4 | draft: true 5 | --- 6 | 7 | Hello, from Gitpod! -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My New Hugo Site 11 | 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 | 47 |
48 | 49 | 50 | 51 |
52 |
53 | 54 |
55 | 56 |
57 |
58 |

59 | This is not the page you were looking for 60 |

61 |
62 |
63 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /public/categories/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My New Hugo Site 11 | 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 | 47 |
48 | 49 | 50 | 51 |
52 |
53 | 54 |
55 | 56 |
57 |
58 |
59 | 60 |
61 | 62 |
63 |
64 |
65 | 138 | 139 | 140 | 141 | -------------------------------------------------------------------------------- /public/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on My New Hugo Site 5 | http://example.org/categories/ 6 | Recent content in Categories on My New Hugo Site 7 | Hugo -- gohugo.io 8 | en-us 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My New Hugo Site 11 | 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 | 47 |
48 | 49 | 50 | 51 |
52 |
53 | 54 |
55 | 56 |
57 |
58 | 59 | 60 | 61 | 62 | 63 | 64 |
65 | 66 |

Recent Posts

67 | 68 | 69 | 70 | 71 |
72 | 73 |
74 | 83 | 84 |
85 | 86 |
87 | 88 | 89 |
90 | 91 |
92 | 165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /public/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My New Hugo Site 5 | http://example.org/ 6 | Recent content on My New Hugo Site 7 | Hugo -- gohugo.io 8 | en-us 9 | Wed, 18 Aug 2021 12:22:52 +0000 10 | 11 | My First Post 12 | http://example.org/posts/my-first-post/ 13 | Wed, 18 Aug 2021 12:22:52 +0000 14 | 15 | http://example.org/posts/my-first-post/ 16 | Hello, from Gitpod! 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/output/css/main.166474c2adad740c325e334f04665ab11fac6321b2e4394ef294bbd02fc0648d.css: -------------------------------------------------------------------------------- 1 | /*! tailwindcss v2.2.7 | MIT License | https://tailwindcss.com*/ 2 | 3 | /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:Raleway,sans-serif;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:Firacode,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}*,:after,:before{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.container{margin-left:auto;margin-right:auto;padding-left:3rem;padding-right:3rem;width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.mt-20{margin-top:5rem}.mr-3{margin-right:.75rem}.mb-auto{margin-bottom:auto}.ml-0{margin-left:0}.ml-4{margin-left:1rem}.block{display:block}.flex{display:flex}.table{display:table}.h-screen{height:100vh}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}@-webkit-keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.list-none{list-style-type:none}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.items-center{align-items:center}.justify-between{justify-content:space-between}.border-t{border-top-width:1px}.border-gray-700{--tw-border-opacity:1;border-color:rgba(55,65,81,var(--tw-border-opacity))}.bg-transparent{background-color:transparent}.bg-gray-700{--tw-bg-opacity:1;background-color:rgba(55,65,81,var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.p-0{padding:0}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-20{padding-bottom:5rem;padding-top:5rem}.pr-2{padding-right:.5rem}.pr-5{padding-right:1.25rem}.pb-2{padding-bottom:.5rem}.text-center{text-align:center}.font-sans{font-family:Raleway,sans-serif}.font-mono{font-family:Firacode,monospace}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-5xl{font-size:3rem;line-height:1}.font-bold{font-weight:700}.tracking-wide{letter-spacing:.025em}.text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}*,:after,:before{--tw-shadow:0 0 #0000;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap");main{font-size:1.125rem;line-height:1.75rem}main p{padding-bottom:1.25rem}main h5,main h6{font-size:1.25rem;font-weight:700;line-height:1.75rem;padding-bottom:1.75rem;padding-top:1.75rem}main h3,main h4{font-size:1.5rem;line-height:2rem}main h2,main h3,main h4{font-weight:700;padding-bottom:1.75rem;padding-top:1.75rem}main h2{font-size:1.875rem;line-height:2.25rem}main h1{font-size:2.25rem;font-weight:700;line-height:2.5rem;padding-bottom:1.75rem;padding-top:1.75rem}.highlight{--tw-shadow:0 25px 50px -12px rgba(0,0,0,0.25);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.highlight,pre{border-radius:.75rem}pre{padding:1.25rem 2.5rem}blockquote{--tw-border-opacity:1;border-color:rgba(55,65,81,var(--tw-border-opacity));border-left-width:8px;font-family:Merriweather,serif;margin-left:9rem;padding-left:1.5rem}table{border-collapse:collapse;text-align:left;width:100%}th{font-weight:700}td,th{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgba(107,114,128,var(--tw-border-opacity));padding-bottom:.5rem;padding-top:.5rem}table>tbody>tr:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(107,114,128,var(--tw-bg-opacity));color:rgba(249,250,251,var(--tw-text-opacity))}main ol{list-style-type:decimal}main ol,main ul{list-style-position:inside;padding-left:1.25rem}main ul{list-style-type:disc}main a{background-color:rgba(0,0,0,var(--tw-bg-opacity));color:rgba(156,163,175,var(--tw-text-opacity))}main a,main a:hover{--tw-bg-opacity:1;--tw-text-opacity:1}main a:hover{background-color:rgba(17,24,39,var(--tw-bg-opacity));color:rgba(209,213,219,var(--tw-text-opacity))}.footnotes{font-size:.875rem;line-height:1.25rem;margin-top:5rem}.footnotes li{display:flex;padding-top:.5rem}.pagination{display:flex;font-size:1.125rem;line-height:1.75rem;place-content:center}.pagination ul{display:flex;list-style-type:none}.pagination a{margin-left:.5rem;margin-right:.5rem;padding:.5rem 1rem} -------------------------------------------------------------------------------- /public/posts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My New Hugo Site 11 | 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 | 47 |
48 | 49 | 50 | 51 |
52 |
53 | 54 |
55 | 56 |
57 |
58 |
59 | 60 |
61 |
62 | 63 |
64 | 73 | 74 |
75 | 76 |
77 | 80 |
81 |
82 | 155 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /public/posts/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Posts on My New Hugo Site 5 | http://example.org/posts/ 6 | Recent content in Posts on My New Hugo Site 7 | Hugo -- gohugo.io 8 | en-us 9 | Wed, 18 Aug 2021 12:22:52 +0000 10 | 11 | My First Post 12 | http://example.org/posts/my-first-post/ 13 | Wed, 18 Aug 2021 12:22:52 +0000 14 | 15 | http://example.org/posts/my-first-post/ 16 | Hello, from Gitpod! 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/posts/my-first-post/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My First Post | My New Hugo Site 11 | 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 | 52 |
53 | 54 | 55 | 56 |
57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 |
65 |

My First Post

66 | 67 |
68 | 69 | 70 | 73 |
74 |
75 | 76 |
77 |

Hello, from Gitpod!

78 | 79 |
    80 | 81 |
82 | 83 |
84 | 85 |
86 | 87 | 88 |
89 |
90 |
91 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /public/posts/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://example.org/posts/ -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | http://example.org/posts/my-first-post/ 6 | 2021-08-18T12:22:52+00:00 7 | 8 | http://example.org/ 9 | 2021-08-18T12:22:52+00:00 10 | 11 | http://example.org/posts/ 12 | 2021-08-18T12:22:52+00:00 13 | 14 | http://example.org/categories/ 15 | 16 | http://example.org/tags/ 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/tags/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | My New Hugo Site 11 | 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 | 47 |
48 | 49 | 50 | 51 |
52 |
53 | 54 |
55 | 56 |
57 |
58 |
59 | 60 |
61 | 62 |
63 |
64 |
65 | 138 | 139 | 140 | 141 | -------------------------------------------------------------------------------- /public/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on My New Hugo Site 5 | http://example.org/tags/ 6 | Recent content in Tags on My New Hugo Site 7 | Hugo -- gohugo.io 8 | en-us 9 | 10 | 11 | --------------------------------------------------------------------------------