commit 7a150783e70e7fdbbeb410511937014653634ce4 Author: Rushil Umaretiya Date: Mon Feb 22 00:47:40 2021 -0500 feat: initialized basic bwplus site diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcedbbf --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +/public/ +/resources/_gen/ +hugo_stats.json + +hugo.exe +hugo.darwin +hugo.linux + +*Zone.Identifier + +### vscode ### +.vscode/* diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..86cbe4f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/doors"] + path = themes/doors + url = https://github.com/zzzmisa/hugo-theme-doors diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5b39006 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM golang:1.16-alpine as builder + +RUN cd $HOME \ + + && apk add git \ + && git clone https://github.com/gohugoio/hugo.git \ + + && cd hugo \ + + && go install + +WORKDIR /app + +COPY . ./ + +RUN hugo + +FROM nginx:alpine + +COPY --from=builder /app/public /usr/share/nginx/html + +EXPOSE 80 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/config.toml b/config.toml new file mode 100644 index 0000000..a3960b7 --- /dev/null +++ b/config.toml @@ -0,0 +1,62 @@ +baseURL = "http://bwplus.shaanta.com/" +languageCode = "en-us" +title = "Best Western Plus Governor's Inn, Midlothian VA" +theme = "doors" +googleAnalytics = "UA-190265905-1" +disableKinds = ["taxonomy", "taxonomyTerm"] + +disableRSS = true +disableSitemap = true +disable404 = true + +# Site information +[params] +description = "" +ogimage = "img/hero.jpg" + +# Project section +[params.projects] + +[[params.projects.list]] +title = "Thanks for staying at Best Western!" +url = "#" +description = "Click here for the guest directory" +image = "img/hero.jpg" +w = "1024" +h = "683" + +# Subproject section +[params.subprojects] + +[[params.subprojects.list]] +title = "Find us on Google Maps" +url = "#" +description = "9826 Midlothian Turnpike, North Chesterfield, VA 23235" +image = "img/map.jpg" +w = "780" +h = "500" + +[[params.subprojects.list]] +title = "Breakfast Options" +url = "#" +description = "We're offering breakfast and hot sandwiches at the front desk" +image = "img/breakfast.jpg" +w = "780" +h = "500" + +[[params.subprojects.list]] +title = "Things to do in Richmond" +url = "https://www.visitrichmondva.com/things-to-do/" +description = "Note: There's a lot" +image = "img/richmond.jpg" +w = "780" +h = "518" + +# Contact section +[params.contact] +description = "We'd love to hear from you! Please send us an email or leave a review on any major site." +twitter = "" +facebook = "" +linkedin = "" +github = "" +email = "mailto:vibha@shaanta.com" diff --git a/static/img/breakfast.jpg b/static/img/breakfast.jpg new file mode 100644 index 0000000..b2484dc Binary files /dev/null and b/static/img/breakfast.jpg differ diff --git a/static/img/hero.jpg b/static/img/hero.jpg new file mode 100644 index 0000000..107f484 Binary files /dev/null and b/static/img/hero.jpg differ diff --git a/static/img/map.jpg b/static/img/map.jpg new file mode 100644 index 0000000..52231dd Binary files /dev/null and b/static/img/map.jpg differ diff --git a/static/img/richmond.jpg b/static/img/richmond.jpg new file mode 100644 index 0000000..dc4ba5a Binary files /dev/null and b/static/img/richmond.jpg differ diff --git a/themes/doors b/themes/doors new file mode 160000 index 0000000..6d9fe1e --- /dev/null +++ b/themes/doors @@ -0,0 +1 @@ +Subproject commit 6d9fe1ef48111818f650ff628c96c35a94b874b7