From d14d1fe4940b8e8924373c699aa620f945678330 Mon Sep 17 00:00:00 2001 From: Andrew Stowell Date: Mon, 6 May 2024 17:01:14 +0000 Subject: [PATCH] going back to default build directory of _site. updated readme, and prefixed the preview folder so it doesn't get deployed when building. --- .gitignore | 3 +-- README.md | 31 ++++++++++++++++++++++++------- _config.yml | 3 ++- _preview.sh | 2 +- 4 files changed, 28 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 29bd907..8380fe1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,4 @@ .sass-cache _site .jekyll-cache -/public -/preview +_preview/ diff --git a/README.md b/README.md index 09b3abf..940638b 100644 --- a/README.md +++ b/README.md @@ -46,18 +46,22 @@ Within your `_config.yml` file, you can specify a number of options to customize ```yaml # Base Settings title: Your awesome title -author: Some User +#author: Some User email: your-email@domain.com description: - Write an awesome description for your new site here. + Write an awesome description for your new site here. You can edit this + line in _config.yml. It will appear in your document head meta (for + Google search results) and in your feed.xml site description. # Site URL url: "https://theme.digitaladapt.com" baseurl: / +lang: en # Matomo Tracking # matomo_url: "://track.tld" # matomo_siteId: 1 +# google_analytics: "G-XXXXXXXXXX" # Contact Me About This Page page_contact: false @@ -75,18 +79,19 @@ excerpt_separator: # Social Links rss: rss -twitter_username: digitaladapt +#twitter_username: digitaladapt github_username: digitaladapt -bitbucket_username: digitaladapt +#bitbucket_username: digitaladapt # "Copy ID" from user menu, may need to enable developer mode to see option -discord_id_number: "570971366833127425" -discord_username: "DigitalAdapt#8238" -keybase_username: digitaladapt +#discord_id_number: "570971366833127425" +#discord_username: "DigitalAdapt#8238" +#keybase_username: digitaladapt # instagram_username: digitaladapt # dribbble_username: digitaladapt # facebook_username: digitaladapt # flickr_username: digitaladapt # linkedin_username: digitaladapt +# reddit_username: digitaladapt # pinterest_username: digitaladapt # youtube_username: digitaladapt # googleplus_username: +digitaladapt @@ -95,4 +100,16 @@ keybase_username: digitaladapt # mastodon: # - username: digitaladapt # instance: example.com + +# custom additions to head/body +# for example, this style will put the page heading on top of the banner image. +#custom_head_html: '' +#custom_body_html: '' + +# Build Settings +# default destination is "_site" +#destination: public +plugins: + - jekyll-feed + - jekyll-seo-tag ``` diff --git a/_config.yml b/_config.yml index 3157c9c..915b06a 100644 --- a/_config.yml +++ b/_config.yml @@ -61,7 +61,8 @@ github_username: digitaladapt #custom_body_html: '' # Build Settings -destination: public +# default destination is "_site" +#destination: public plugins: - jekyll-feed - jekyll-seo-tag diff --git a/_preview.sh b/_preview.sh index 69b1fa0..f365aa9 100755 --- a/_preview.sh +++ b/_preview.sh @@ -2,5 +2,5 @@ # will cause port 4000 to be available for reverse proxy to call on # but will *NOT* update the live website, because we are using a different destination -bundle exec jekyll serve --destination preview +bundle exec jekyll serve --destination _preview