commit fc06b50ed18f19072e2c5486c86868083fe79f56 Author: Daniel Alejandro Gallegos Date: Sun Jan 8 23:03:55 2023 -0500 initial commit diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/assets/sass/base.sass b/assets/sass/base.sass new file mode 100644 index 0000000..30ec2bb --- /dev/null +++ b/assets/sass/base.sass @@ -0,0 +1,7 @@ +html, body + height: 100% + width: 100% + overflow: hidden +body + background: #151515 + color: #EEEEEE diff --git a/assets/sass/layout.sass b/assets/sass/layout.sass new file mode 100644 index 0000000..72d5b1e --- /dev/null +++ b/assets/sass/layout.sass @@ -0,0 +1,10 @@ +.home + height: 100vh + width: 100vw + padding: 0 + margin: 0 + display: flex + align-items: center + justify-content: center + img + height: 20vh diff --git a/assets/sass/main.sass b/assets/sass/main.sass new file mode 100644 index 0000000..541476b --- /dev/null +++ b/assets/sass/main.sass @@ -0,0 +1,5 @@ +@import "base" +@import "layout" +@import "module" +@import "state" +@import "theme" diff --git a/assets/sass/module.sass b/assets/sass/module.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/state.sass b/assets/sass/state.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/theme.sass b/assets/sass/theme.sass new file mode 100644 index 0000000..e69de29 diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..be5e186 --- /dev/null +++ b/config.toml @@ -0,0 +1,37 @@ +baseURL = 'https://tacowolf.net/' +languageCode = 'en-us' +title = '🌮🐺' +enableEmoji = true + +[minify] + disableCSS = false + disableHTML = false + disableJS = false + disableJSON = false + disableSVG = false + disableXML = false + minifyOutput = true + [minify.tdewolff] + [minify.tdewolff.css] + keepCSS2 = true + precision = 0 + [minify.tdewolff.html] + keepComments = false + keepConditionalComments = true + keepDefaultAttrVals = true + keepDocumentTags = true + keepEndTags = true + keepQuotes = false + keepWhitespace = false + [minify.tdewolff.js] + keepVarNames = false + noNullishOperator = false + precision = 0 + [minify.tdewolff.json] + keepNumbers = false + precision = 0 + [minify.tdewolff.svg] + keepComments = false + precision = 0 + [minify.tdewolff.xml] + keepWhitespace = false diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..4764e36 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,7 @@ +--- +title: TacoWolf +layout: index +--- + +[![taco](/taco.svg)](https://daniel.ga/llegos) +[![wolf](/wolf.svg)](#) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..61b7694 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,11 @@ + + + {{ partial "head.html" . }} + + {{ block "main" . }} + {{ end }} + {{ block "footer" . }} + {{ partial "footer.html" . }} + {{ end }} + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..46841c0 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,20 @@ +{{ define "title" }} + {{ .Title }} – {{ .Site.Title }} +{{ end }} +{{ define "main" }} +
+
+
+

{{.Title}}

+
+ {{.Content}} +
+ +
+{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..2b98ba7 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,7 @@ +{{ define "title" }} + {{ .Title }} – {{ .Site.Title }} +{{ end }} +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} +{{ end }} diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..6a2c300 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,7 @@ +{{ define "main" }} +
+
+ {{.Content}} +
+
+{{ end }} diff --git a/layouts/partials/favicon.html b/layouts/partials/favicon.html new file mode 100644 index 0000000..f097706 --- /dev/null +++ b/layouts/partials/favicon.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..0711262 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,11 @@ + + {{ partial "favicon.html" . }} + + {{ block "title" . }} + {{ .Site.Title }} dot net + {{ end }} + + {{ $sass := resources.Get "sass/main.sass" }} + {{ $style := $sass | resources.ToCSS }} + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..7505aaa --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,3 @@ +
+

{{ .Site.Title }}

+
diff --git a/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.content b/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.content new file mode 100644 index 0000000..b1b3aba --- /dev/null +++ b/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.content @@ -0,0 +1,19 @@ +html, body { + height: 100%; + width: 100%; + overflow: hidden; } + +body { + background: #151515; + color: #EEEEEE; } + +.home { + height: 100vh; + width: 100vw; + padding: 0; + margin: 0; + display: flex; + align-items: center; + justify-content: center; } + .home img { + height: 20vh; } diff --git a/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.json b/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.json new file mode 100644 index 0000000..f010337 --- /dev/null +++ b/resources/_gen/assets/sass/sass/main.sass_f300667da4f5b5f84e1a9e0702b2fdde.json @@ -0,0 +1 @@ +{"Target":"sass/main.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content new file mode 100644 index 0000000..3f8c3bc --- /dev/null +++ b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content @@ -0,0 +1,2 @@ +body { + background: #151515; } diff --git a/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json new file mode 100644 index 0000000..f010337 --- /dev/null +++ b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json @@ -0,0 +1 @@ +{"Target":"sass/main.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..4ab7e0c Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..45c8588 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..12dd584 Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/browserconfig.xml b/static/browserconfig.xml new file mode 100644 index 0000000..ad6be4b --- /dev/null +++ b/static/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #aa3d1e + + + diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..6e0e86a Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..cb7d9b6 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..a4fea27 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/mstile-144x144.png b/static/mstile-144x144.png new file mode 100644 index 0000000..5893edb Binary files /dev/null and b/static/mstile-144x144.png differ diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png new file mode 100644 index 0000000..57df8fc Binary files /dev/null and b/static/mstile-150x150.png differ diff --git a/static/mstile-310x150.png b/static/mstile-310x150.png new file mode 100644 index 0000000..cdfb426 Binary files /dev/null and b/static/mstile-310x150.png differ diff --git a/static/mstile-310x310.png b/static/mstile-310x310.png new file mode 100644 index 0000000..a769067 Binary files /dev/null and b/static/mstile-310x310.png differ diff --git a/static/mstile-70x70.png b/static/mstile-70x70.png new file mode 100644 index 0000000..82d08f7 Binary files /dev/null and b/static/mstile-70x70.png differ diff --git a/static/safari-pinned-tab.svg b/static/safari-pinned-tab.svg new file mode 100644 index 0000000..a7d04e4 --- /dev/null +++ b/static/safari-pinned-tab.svg @@ -0,0 +1,44 @@ + + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..b20abb7 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/static/taco.svg b/static/taco.svg new file mode 100644 index 0000000..be03d39 --- /dev/null +++ b/static/taco.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/wolf.svg b/static/wolf.svg new file mode 100644 index 0000000..2e32def --- /dev/null +++ b/static/wolf.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/wolf_taco.svg b/static/wolf_taco.svg new file mode 100644 index 0000000..f1e6f17 --- /dev/null +++ b/static/wolf_taco.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +