mirror of
https://github.com/Rushilwiz/bwplus.git
synced 2025-04-04 12:30:19 -04:00
feat: initialized basic bwplus site
This commit is contained in:
commit
7a150783e7
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
/public/
|
||||
/resources/_gen/
|
||||
hugo_stats.json
|
||||
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
*Zone.Identifier
|
||||
|
||||
### vscode ###
|
||||
.vscode/*
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/doors"]
|
||||
path = themes/doors
|
||||
url = https://github.com/zzzmisa/hugo-theme-doors
|
22
Dockerfile
Normal file
22
Dockerfile
Normal file
|
@ -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
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
62
config.toml
Normal file
62
config.toml
Normal file
|
@ -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"
|
BIN
static/img/breakfast.jpg
Normal file
BIN
static/img/breakfast.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 410 KiB |
BIN
static/img/hero.jpg
Normal file
BIN
static/img/hero.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 106 KiB |
BIN
static/img/map.jpg
Normal file
BIN
static/img/map.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 179 KiB |
BIN
static/img/richmond.jpg
Normal file
BIN
static/img/richmond.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 535 KiB |
1
themes/doors
Submodule
1
themes/doors
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 6d9fe1ef48111818f650ff628c96c35a94b874b7
|
Loading…
Reference in New Issue
Block a user