diff --git a/exampleSite/content/docs/configuration/index.md b/exampleSite/content/docs/configuration/index.md index 1594ef56a..55ffc0843 100644 --- a/exampleSite/content/docs/configuration/index.md +++ b/exampleSite/content/docs/configuration/index.md @@ -137,7 +137,7 @@ The default file can be used as a template to create additional languages, or re | Name | Default | Description | | ----------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `author.name` | _Not set_ | The author's name. This will be displayed in article footers, and on the homepage when the profile layout is used. | -| `author.image` | _Not set_ | Path to the image file of the author. The image should be a 1:1 aspect ratio and placed in the site's `assets/` folder. | +| `author.image` | _Not set_ | Path to the image file of the author. The image should be a 1:1 aspect ratio. The image can be placed in the site's `assets/` folder or can be external url. | | `author.headline` | _Not set_ | A Markdown string containing the author's headline. It will be displayed on the profile homepage under the author's name. | | `author.bio` | _Not set_ | A Markdown string containing the author's bio. It will be displayed in article footers. | | `author.links` | _Not set_ | The links to display alongside the author's details. The config file contains example links which can simply be uncommented to enable. The order that the links are displayed is determined by the order they appear in the array. Custom links can be added by providing corresponding SVG icon assets in `assets/icons/`. | @@ -200,7 +200,7 @@ Many of the article defaults here can be overridden on a per article basis by sp | Name | Default | Description | | ------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `homepage.layout` | `"profile"` | The layout of the homepage. Valid values are `page`, `profile`, `hero`, `card`, `background`, or `custom`. When set to `custom`, you must provide your own layout by creating a `/layouts/partials/home/custom.html` file. Refer to the [Homepage Layout]({{< ref "homepage-layout" >}}) section for more details. | -| `homepage.homepageImage` | _Not set_ | Image to be used in `hero` and `card` layouts. Refer to the [Homepage Layout]({{< ref "homepage-layout" >}}) section for more details. | +| `homepage.homepageImage` | _Not set_ | Image to be used in `hero` and `card` layouts. Can be set as local image from asset directory or external image url. Refer to the [Homepage Layout]({{< ref "homepage-layout" >}}) section for more details. | | `homepage.showRecent` | `false` | Whether or not to display the recent articles list on the homepage. | | `homepage.showRecentItems` | 5 | How many articles to display if showRecent is true. If variable is set to 0 or if it isn't defined the system will default to 5 articles. | | `homepage.showMoreLink` | `false` | Whether or not to display a show more link at the end of your posts that takes the user to a predefined place. | diff --git a/exampleSite/content/docs/front-matter/index.md b/exampleSite/content/docs/front-matter/index.md index 1826212cf..22f0cf981 100644 --- a/exampleSite/content/docs/front-matter/index.md +++ b/exampleSite/content/docs/front-matter/index.md @@ -28,6 +28,8 @@ Front matter parameter default values are inherited from the theme's [base confi | `showAuthor` | `article.showAuthor` | Whether or not the author box for the default author is displayed in the article footer. | | `authors` | _Not set_ | Array of values for authors, if set it overrides `showAuthor` settings for page or site. Used on the multiple authors feature, check [this page]({{< ref "multi-author" >}}) for more details on how to configure that feature. | | `showAuthorsBadges` | `article.showAuthorsBadges` | Whether the `authors` taxonomies are are displayed in the article or list header. This requires the setup of `multiple authors` and the `authors` taxonomy. Check [this page]({{< ref "multi-author" >}}) for more details on how to configure that feature. | +| `featureimage` | _Not set_ | External URL for feature image +| `featureimagecaption` | _Not set_ | Caption for feature image. Only displayed in heroStyle `big` | `showHero` | `article.showHero` | Whether the thumbnail image will be shown as a hero image within the article page. | | `heroStyle` | `article.heroStyle` | Style to display the hero image, valid options are: `basic`, `big`, `background`, `thumbAndBackground`. | | `showBreadcrumbs` | `article.showBreadcrumbs` or `list.showBreadcrumbs` | Whether the breadcrumbs are displayed in the article or list header. | diff --git a/exampleSite/content/docs/shortcodes/index.md b/exampleSite/content/docs/shortcodes/index.md index 978fd6887..8e7b92837 100644 --- a/exampleSite/content/docs/shortcodes/index.md +++ b/exampleSite/content/docs/shortcodes/index.md @@ -127,7 +127,7 @@ Call to action | Parameter | Description | | ------------- | ----------------------------------------------------------------------------------------------------------------- | -| `images` | **Required.** A regex string to match image names. | +| `images` | **Required.** A regex string to match image names or URLs. | | `aspectRatio` | **Optional.** The aspect ratio for the carousel. Either `16-9`, `21-9` or `32-9`. It is set to `16-9` by default. | | `interval` | **Optional.** The interval for the auto-scrooling, specified in milliseconds. Defaults to `2000` (2s) | @@ -135,10 +135,10 @@ Call to action **Example 1:** 16:9 aspect ratio and verbose list of images ```md -{{* carousel images="{gallery/03.jpg, gallery/01.jpg, gallery/02.jpg, gallery/04.jpg}" */>}} +{{* carousel images="{https://cdn.pixabay.com/photo/2016/12/11/12/02/mountains-1899264_960_720.jpg, gallery/03.jpg, gallery/01.jpg, gallery/02.jpg, gallery/04.jpg}" */>}} ``` -{{< carousel images="{gallery/03.jpg,gallery/01.jpg,gallery/02.jpg,gallery/04.jpg}" >}} +{{< carousel images="{https://cdn.pixabay.com/photo/2016/12/11/12/02/mountains-1899264_960_720.jpg,gallery/03.jpg,gallery/01.jpg,gallery/02.jpg,gallery/04.jpg}" >}} **Example 2:** 21:9 aspect ratio and regex-ed list of images @@ -319,9 +319,9 @@ Unlike `github` it can't display the main programming language of a project. Finally, custom GitLab instance URL can be provided, as long as the `api/v4/projects/` endpoint is available, making this shortcode compatible with most self-hosted / enterprise deployments. -| Parameter | Description | -| ----------- | ---------------------------------------------------------------------- | -| `projectID` | [String] gitlab numeric ProjectID | +| Parameter | Description | +| ----------- | ----------------------------------------------------------------------- | +| `projectID` | [String] gitlab numeric ProjectID | | `baseURL` | [String] optional gitlab instance URL, default is `https://gitlab.com/` | @@ -385,9 +385,9 @@ The `keyword` component can be used to visually highlight certain important word -| Parameter | Description | -| ----------- | -------------------------------------------- | -| `icon` | Optional icon to be used in the keyword | +| Parameter | Description | +| --------- | --------------------------------------- | +| `icon` | Optional icon to be used in the keyword | The input is written in Markdown so you can format it however you please. @@ -576,7 +576,7 @@ The `timeline` creates a visual timeline that can be used in different use-cases | ----------- | -------------------------------------------- | | `icon` | the icon to be used in the timeline visuals. | | `header` | header for each entry | -| `badge` | text to place within the top right badge | +| `badge` | text to place within the top right badge | | `subheader` | entry's subheader | diff --git a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg index 88615fffd..882969055 100644 Binary files a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg and b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg differ diff --git a/exampleSite/content/users/50-nuances-octets.fr/index.md b/exampleSite/content/users/50-nuances-octets.fr/index.md index 8a4917407..ddfeb05de 100644 --- a/exampleSite/content/users/50-nuances-octets.fr/index.md +++ b/exampleSite/content/users/50-nuances-octets.fr/index.md @@ -2,7 +2,7 @@ title: "50-nuances-octets.fr" tags: [Organization site] externalUrl: "https://www.50-nuances-octets.fr/" - date: 9954-08-08 + date: 9956-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/BoringTech.net/feature.jpg b/exampleSite/content/users/BoringTech.net/feature.jpg index d5f5a5f63..297a70e74 100644 Binary files a/exampleSite/content/users/BoringTech.net/feature.jpg and b/exampleSite/content/users/BoringTech.net/feature.jpg differ diff --git a/exampleSite/content/users/BoringTech.net/index.md b/exampleSite/content/users/BoringTech.net/index.md index 46fc126e1..7fe03280f 100644 --- a/exampleSite/content/users/BoringTech.net/index.md +++ b/exampleSite/content/users/BoringTech.net/index.md @@ -2,7 +2,7 @@ title: "BoringTech.net" tags: [Personal Site,Blog] externalUrl: "https://boringtech.net/" - date: 9930-08-08 + date: 9932-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/DXPetti.com/feature.jpg b/exampleSite/content/users/DXPetti.com/feature.jpg index c2e3235f7..75e889383 100644 Binary files a/exampleSite/content/users/DXPetti.com/feature.jpg and b/exampleSite/content/users/DXPetti.com/feature.jpg differ diff --git a/exampleSite/content/users/DXPetti.com/index.md b/exampleSite/content/users/DXPetti.com/index.md index 369aa8ba8..d3a730531 100644 --- a/exampleSite/content/users/DXPetti.com/index.md +++ b/exampleSite/content/users/DXPetti.com/index.md @@ -2,7 +2,7 @@ title: "DXPetti.com" tags: [Personal site,Blog] externalUrl: "https://www.dxpetti.com/" - date: 9923-08-08 + date: 9925-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/adilhyz.github.io/feature.jpg b/exampleSite/content/users/adilhyz.github.io/feature.jpg index 4e2af3e3f..7913a775f 100644 Binary files a/exampleSite/content/users/adilhyz.github.io/feature.jpg and b/exampleSite/content/users/adilhyz.github.io/feature.jpg differ diff --git a/exampleSite/content/users/adilhyz.github.io/index.md b/exampleSite/content/users/adilhyz.github.io/index.md index c6acf196c..7854f8c28 100644 --- a/exampleSite/content/users/adilhyz.github.io/index.md +++ b/exampleSite/content/users/adilhyz.github.io/index.md @@ -2,7 +2,7 @@ title: "adilhyz.github.io" tags: [Personal site] externalUrl: "https://adilhyz.github.io" - date: 9941-08-08 + date: 9943-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/adir1.com/feature.jpg b/exampleSite/content/users/adir1.com/feature.jpg index 71a0a84a1..90197982d 100644 Binary files a/exampleSite/content/users/adir1.com/feature.jpg and b/exampleSite/content/users/adir1.com/feature.jpg differ diff --git a/exampleSite/content/users/alanctanner.com/feature.jpg b/exampleSite/content/users/alanctanner.com/feature.jpg index 78c7c6916..d2bcaa5f0 100644 Binary files a/exampleSite/content/users/alanctanner.com/feature.jpg and b/exampleSite/content/users/alanctanner.com/feature.jpg differ diff --git a/exampleSite/content/users/albertolvera.com/feature.jpg b/exampleSite/content/users/albertolvera.com/feature.jpg index 0b5a50f3c..e7e1389b8 100644 Binary files a/exampleSite/content/users/albertolvera.com/feature.jpg and b/exampleSite/content/users/albertolvera.com/feature.jpg differ diff --git a/exampleSite/content/users/alejandro-ao.com/feature.jpg b/exampleSite/content/users/alejandro-ao.com/feature.jpg index 11ba7f0c3..916f86a2e 100644 Binary files a/exampleSite/content/users/alejandro-ao.com/feature.jpg and b/exampleSite/content/users/alejandro-ao.com/feature.jpg differ diff --git a/exampleSite/content/users/alxhslm.github.io/feature.jpg b/exampleSite/content/users/alxhslm.github.io/feature.jpg index e77a3d1ec..84ead7e8a 100644 Binary files a/exampleSite/content/users/alxhslm.github.io/feature.jpg and b/exampleSite/content/users/alxhslm.github.io/feature.jpg differ diff --git a/exampleSite/content/users/alxhslm.github.io/index.md b/exampleSite/content/users/alxhslm.github.io/index.md index b9a9f5356..186c838e5 100644 --- a/exampleSite/content/users/alxhslm.github.io/index.md +++ b/exampleSite/content/users/alxhslm.github.io/index.md @@ -2,7 +2,7 @@ title: "alxhslm.github.io" tags: [Personal Site] externalUrl: "https://alxhslm.github.io/" - date: 9927-08-08 + date: 9929-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/asterisk.lol/feature.jpg b/exampleSite/content/users/asterisk.lol/feature.jpg index e08e8cb23..31758ee44 100644 Binary files a/exampleSite/content/users/asterisk.lol/feature.jpg and b/exampleSite/content/users/asterisk.lol/feature.jpg differ diff --git a/exampleSite/content/users/asterisk.lol/index.md b/exampleSite/content/users/asterisk.lol/index.md index 46f1fb8b1..84e5943e1 100644 --- a/exampleSite/content/users/asterisk.lol/index.md +++ b/exampleSite/content/users/asterisk.lol/index.md @@ -2,7 +2,7 @@ title: "asterisk.lol" tags: [Personal Site] externalUrl: "https://asterisk.lol" - date: 9922-08-08 + date: 9924-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/bbagwang.com/feature.jpg b/exampleSite/content/users/bbagwang.com/feature.jpg index f065cba97..cb4ee4778 100644 Binary files a/exampleSite/content/users/bbagwang.com/feature.jpg and b/exampleSite/content/users/bbagwang.com/feature.jpg differ diff --git a/exampleSite/content/users/bbagwang.com/index.md b/exampleSite/content/users/bbagwang.com/index.md index 83b2af884..8745a559c 100644 --- a/exampleSite/content/users/bbagwang.com/index.md +++ b/exampleSite/content/users/bbagwang.com/index.md @@ -2,7 +2,7 @@ title: "bbagwang.com" tags: [Personal site] externalUrl: "https://bbagwang.com" - date: 9947-08-08 + date: 9949-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/binarydigit.cafe/feature.jpg b/exampleSite/content/users/binarydigit.cafe/feature.jpg index f1f87c63d..a3e4370aa 100644 Binary files a/exampleSite/content/users/binarydigit.cafe/feature.jpg and b/exampleSite/content/users/binarydigit.cafe/feature.jpg differ diff --git a/exampleSite/content/users/binarydigit.cafe/index.md b/exampleSite/content/users/binarydigit.cafe/index.md index 6e16a4a5b..04024ae5a 100644 --- a/exampleSite/content/users/binarydigit.cafe/index.md +++ b/exampleSite/content/users/binarydigit.cafe/index.md @@ -2,7 +2,7 @@ title: "binarydigit.cafe" tags: [Personal site] externalUrl: "https://binarydigit.cafe/" - date: 9928-08-08 + date: 9930-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/blastomussa.dev/feature.jpg b/exampleSite/content/users/blastomussa.dev/feature.jpg index 5742a4d6d..9aa76f359 100644 Binary files a/exampleSite/content/users/blastomussa.dev/feature.jpg and b/exampleSite/content/users/blastomussa.dev/feature.jpg differ diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg b/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg index 76b4877b6..705969d3c 100644 Binary files a/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg and b/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg differ diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/index.md b/exampleSite/content/users/blog.enmanuelmoreira.com/index.md index fc904339a..abb127335 100644 --- a/exampleSite/content/users/blog.enmanuelmoreira.com/index.md +++ b/exampleSite/content/users/blog.enmanuelmoreira.com/index.md @@ -2,7 +2,7 @@ title: "blog.enmanuelmoreira.com" tags: [Personal site] externalUrl: "https://blog.enmanuelmoreira.com" - date: 9956-08-08 + date: 9958-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/blog.muffn.io/feature.jpg b/exampleSite/content/users/blog.muffn.io/feature.jpg index 83feb5f8e..35632d060 100644 Binary files a/exampleSite/content/users/blog.muffn.io/feature.jpg and b/exampleSite/content/users/blog.muffn.io/feature.jpg differ diff --git a/exampleSite/content/users/blog.stonegarden.dev/feature.jpg b/exampleSite/content/users/blog.stonegarden.dev/feature.jpg index 666c4c16f..38b4812de 100644 Binary files a/exampleSite/content/users/blog.stonegarden.dev/feature.jpg and b/exampleSite/content/users/blog.stonegarden.dev/feature.jpg differ diff --git a/exampleSite/content/users/blog.stonegarden.dev/index.md b/exampleSite/content/users/blog.stonegarden.dev/index.md index 9f8c0750d..5e9618f80 100644 --- a/exampleSite/content/users/blog.stonegarden.dev/index.md +++ b/exampleSite/content/users/blog.stonegarden.dev/index.md @@ -2,7 +2,7 @@ title: "blog.stonegarden.dev" tags: [Personal Site] externalUrl: "https://blog.stonegarden.dev/" - date: 9932-08-08 + date: 9934-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/brendanwallace.github.io/feature.jpg b/exampleSite/content/users/brendanwallace.github.io/feature.jpg index 2b5416671..b4f45b7b5 100644 Binary files a/exampleSite/content/users/brendanwallace.github.io/feature.jpg and b/exampleSite/content/users/brendanwallace.github.io/feature.jpg differ diff --git a/exampleSite/content/users/cdell.io/feature.jpg b/exampleSite/content/users/cdell.io/feature.jpg index 233920a58..d572b872d 100644 Binary files a/exampleSite/content/users/cdell.io/feature.jpg and b/exampleSite/content/users/cdell.io/feature.jpg differ diff --git a/exampleSite/content/users/chris.banes.dev/feature.jpg b/exampleSite/content/users/chris.banes.dev/feature.jpg index 155e34663..c5dc5ad55 100644 Binary files a/exampleSite/content/users/chris.banes.dev/feature.jpg and b/exampleSite/content/users/chris.banes.dev/feature.jpg differ diff --git a/exampleSite/content/users/ciicadalab.github.io/feature.jpg b/exampleSite/content/users/ciicadalab.github.io/feature.jpg index dd213659d..3446cdae7 100644 Binary files a/exampleSite/content/users/ciicadalab.github.io/feature.jpg and b/exampleSite/content/users/ciicadalab.github.io/feature.jpg differ diff --git a/exampleSite/content/users/clemsau.com/feature.jpg b/exampleSite/content/users/clemsau.com/feature.jpg index 349c926c9..6f154e11b 100644 Binary files a/exampleSite/content/users/clemsau.com/feature.jpg and b/exampleSite/content/users/clemsau.com/feature.jpg differ diff --git a/exampleSite/content/users/clemsau.com/index.md b/exampleSite/content/users/clemsau.com/index.md index 0ad7a57c9..dabd549a1 100644 --- a/exampleSite/content/users/clemsau.com/index.md +++ b/exampleSite/content/users/clemsau.com/index.md @@ -2,7 +2,7 @@ title: "clemsau.com" tags: [Personal site] externalUrl: "https://clemsau.com/" - date: 9960-08-08 + date: 9962-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/code-chimp.com/feature.jpg b/exampleSite/content/users/code-chimp.com/feature.jpg index 2f3342e5e..836684a79 100644 Binary files a/exampleSite/content/users/code-chimp.com/feature.jpg and b/exampleSite/content/users/code-chimp.com/feature.jpg differ diff --git a/exampleSite/content/users/ctulhu.me/feature.jpg b/exampleSite/content/users/ctulhu.me/feature.jpg index c9867c39a..e245336ed 100644 Binary files a/exampleSite/content/users/ctulhu.me/feature.jpg and b/exampleSite/content/users/ctulhu.me/feature.jpg differ diff --git a/exampleSite/content/users/ctulhu.me/index.md b/exampleSite/content/users/ctulhu.me/index.md index fc5c105ec..bc8ad274b 100644 --- a/exampleSite/content/users/ctulhu.me/index.md +++ b/exampleSite/content/users/ctulhu.me/index.md @@ -2,7 +2,7 @@ title: "ctulhu.me" tags: [Personal site] externalUrl: "https://ctulhu.me" - date: 9934-08-08 + date: 9936-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/cuttontail.blog/feature.jpg b/exampleSite/content/users/cuttontail.blog/feature.jpg index 4340956aa..cf877c36a 100644 Binary files a/exampleSite/content/users/cuttontail.blog/feature.jpg and b/exampleSite/content/users/cuttontail.blog/feature.jpg differ diff --git a/exampleSite/content/users/datatodroids.tech/feature.jpg b/exampleSite/content/users/datatodroids.tech/feature.jpg index d66c0fcbb..88316b388 100644 Binary files a/exampleSite/content/users/datatodroids.tech/feature.jpg and b/exampleSite/content/users/datatodroids.tech/feature.jpg differ diff --git a/exampleSite/content/users/datatodroids.tech/index.md b/exampleSite/content/users/datatodroids.tech/index.md index b655b6739..822b726eb 100644 --- a/exampleSite/content/users/datatodroids.tech/index.md +++ b/exampleSite/content/users/datatodroids.tech/index.md @@ -2,7 +2,7 @@ title: "datatodroids.tech" tags: [Personal site,Blog] externalUrl: "https://datatodroids.tech/" - date: 9924-08-08 + date: 9926-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/deepumohan.com-tech/feature.jpg b/exampleSite/content/users/deepumohan.com-tech/feature.jpg index eb4dc2a8c..5ea54f355 100644 Binary files a/exampleSite/content/users/deepumohan.com-tech/feature.jpg and b/exampleSite/content/users/deepumohan.com-tech/feature.jpg differ diff --git a/exampleSite/content/users/deepumohan.com-tech/index.md b/exampleSite/content/users/deepumohan.com-tech/index.md index ccb4483fc..a90ff6a92 100644 --- a/exampleSite/content/users/deepumohan.com-tech/index.md +++ b/exampleSite/content/users/deepumohan.com-tech/index.md @@ -2,7 +2,7 @@ title: "deepumohan.com/tech" tags: [Technology Blog] externalUrl: "https://deepumohan.com/tech/" - date: 9938-08-08 + date: 9940-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/dizzytech.de/feature.jpg b/exampleSite/content/users/dizzytech.de/feature.jpg index 62f6da8da..2acc5900a 100644 Binary files a/exampleSite/content/users/dizzytech.de/feature.jpg and b/exampleSite/content/users/dizzytech.de/feature.jpg differ diff --git a/exampleSite/content/users/ekwska.com/feature.jpg b/exampleSite/content/users/ekwska.com/feature.jpg index 16d4c1be5..1829cfabd 100644 Binary files a/exampleSite/content/users/ekwska.com/feature.jpg and b/exampleSite/content/users/ekwska.com/feature.jpg differ diff --git a/exampleSite/content/users/ekwska.com/index.md b/exampleSite/content/users/ekwska.com/index.md index 111a1a9c3..abc7fef54 100644 --- a/exampleSite/content/users/ekwska.com/index.md +++ b/exampleSite/content/users/ekwska.com/index.md @@ -2,7 +2,7 @@ title: "ekwska.com" tags: [Personal blog] externalUrl: "https://ekwska.com" - date: 9920-08-08 + date: 9922-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/fahru.my.id/feature.jpg b/exampleSite/content/users/fahru.my.id/feature.jpg index 23a6baa50..41d6308bd 100644 Binary files a/exampleSite/content/users/fahru.my.id/feature.jpg and b/exampleSite/content/users/fahru.my.id/feature.jpg differ diff --git a/exampleSite/content/users/fm126.top/feature.jpg b/exampleSite/content/users/fm126.top/feature.jpg index d854e6c7d..52a52f476 100644 Binary files a/exampleSite/content/users/fm126.top/feature.jpg and b/exampleSite/content/users/fm126.top/feature.jpg differ diff --git a/exampleSite/content/users/fm126.top/index.md b/exampleSite/content/users/fm126.top/index.md index 87462ee08..9e27e4324 100644 --- a/exampleSite/content/users/fm126.top/index.md +++ b/exampleSite/content/users/fm126.top/index.md @@ -2,7 +2,7 @@ title: "fm126.top" tags: [Personal site,Blog] externalUrl: "https://fm126.top/" - date: 9926-08-08 + date: 9928-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/fugugames.com/feature.jpg b/exampleSite/content/users/fugugames.com/feature.jpg index cc7c29cf1..8cb1daf8c 100644 Binary files a/exampleSite/content/users/fugugames.com/feature.jpg and b/exampleSite/content/users/fugugames.com/feature.jpg differ diff --git a/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg b/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg index d1c2c152b..a996d5ae9 100644 Binary files a/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg and b/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg differ diff --git a/exampleSite/content/users/gma.name/feature.jpg b/exampleSite/content/users/gma.name/feature.jpg index 550608112..4709ae5ab 100644 Binary files a/exampleSite/content/users/gma.name/feature.jpg and b/exampleSite/content/users/gma.name/feature.jpg differ diff --git a/exampleSite/content/users/gma.name/index.md b/exampleSite/content/users/gma.name/index.md index bd5b9f238..a6c5c2ad0 100644 --- a/exampleSite/content/users/gma.name/index.md +++ b/exampleSite/content/users/gma.name/index.md @@ -2,7 +2,7 @@ title: "gma.name" tags: [Personal site] externalUrl: "https://gma.name" - date: 9944-08-08 + date: 9946-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/halcyonstraits.com/feature.jpg b/exampleSite/content/users/halcyonstraits.com/feature.jpg index 4d6fe61ea..5d02ed5c0 100644 Binary files a/exampleSite/content/users/halcyonstraits.com/feature.jpg and b/exampleSite/content/users/halcyonstraits.com/feature.jpg differ diff --git a/exampleSite/content/users/halcyonstraits.com/index.md b/exampleSite/content/users/halcyonstraits.com/index.md index 1ed616023..74d402294 100644 --- a/exampleSite/content/users/halcyonstraits.com/index.md +++ b/exampleSite/content/users/halcyonstraits.com/index.md @@ -2,7 +2,7 @@ title: "halcyonstraits.com" tags: [Doll photography] externalUrl: "https://www.halcyonstraits.com/" - date: 9955-08-08 + date: 9957-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/hellstabber.github.io/feature.jpg b/exampleSite/content/users/hellstabber.github.io/feature.jpg deleted file mode 100644 index 9cd9546d8..000000000 Binary files a/exampleSite/content/users/hellstabber.github.io/feature.jpg and /dev/null differ diff --git a/exampleSite/content/users/hellstabber.github.io/index.md b/exampleSite/content/users/hellstabber.github.io/index.md deleted file mode 100644 index cd65d6d7c..000000000 --- a/exampleSite/content/users/hellstabber.github.io/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- - title: "hellstabber.github.io" - tags: [Personal site] - externalUrl: "https://hellstabber.github.io/" - date: 9961-08-08 - showDate: false - showAuthor: false - showReadingTime: false - showEdit: false - showLikes: false - showViews: false - layoutBackgroundHeaderSpace: false - --- diff --git a/exampleSite/content/users/hyperbowl3d.com/feature.jpg b/exampleSite/content/users/hyperbowl3d.com/feature.jpg index fb27e58fe..96b5316a9 100644 Binary files a/exampleSite/content/users/hyperbowl3d.com/feature.jpg and b/exampleSite/content/users/hyperbowl3d.com/feature.jpg differ diff --git a/exampleSite/content/users/insidemordecai.com/feature.jpg b/exampleSite/content/users/insidemordecai.com/feature.jpg index f6cc2c0b3..df8373573 100644 Binary files a/exampleSite/content/users/insidemordecai.com/feature.jpg and b/exampleSite/content/users/insidemordecai.com/feature.jpg differ diff --git a/exampleSite/content/users/jam.dsg.li/feature.jpg b/exampleSite/content/users/jam.dsg.li/feature.jpg index 14b4fb2ff..d97645a32 100644 Binary files a/exampleSite/content/users/jam.dsg.li/feature.jpg and b/exampleSite/content/users/jam.dsg.li/feature.jpg differ diff --git a/exampleSite/content/users/jamesdixon.dev/feature.jpg b/exampleSite/content/users/jamesdixon.dev/feature.jpg deleted file mode 100644 index c6b59ba40..000000000 Binary files a/exampleSite/content/users/jamesdixon.dev/feature.jpg and /dev/null differ diff --git a/exampleSite/content/users/jamesdixon.dev/index.md b/exampleSite/content/users/jamesdixon.dev/index.md deleted file mode 100644 index d0fff9912..000000000 --- a/exampleSite/content/users/jamesdixon.dev/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- - title: "jamesdixon.dev" - tags: [Personal site] - externalUrl: "https://jamesdixon.dev" - date: 9983-08-08 - showDate: false - showAuthor: false - showReadingTime: false - showEdit: false - showLikes: false - showViews: false - layoutBackgroundHeaderSpace: false - --- diff --git a/exampleSite/content/users/jamiemoxon.tech/feature.jpg b/exampleSite/content/users/jamiemoxon.tech/feature.jpg index 3981133c3..e90e9ad6d 100644 Binary files a/exampleSite/content/users/jamiemoxon.tech/feature.jpg and b/exampleSite/content/users/jamiemoxon.tech/feature.jpg differ diff --git a/exampleSite/content/users/jamiemoxon.tech/index.md b/exampleSite/content/users/jamiemoxon.tech/index.md index 11fb1cd53..76a2506e1 100644 --- a/exampleSite/content/users/jamiemoxon.tech/index.md +++ b/exampleSite/content/users/jamiemoxon.tech/index.md @@ -2,7 +2,7 @@ title: "jamiemoxon.tech" tags: [Personal site] externalUrl: "https://jamiemoxon.tech" - date: 9946-08-08 + date: 9948-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/jeknom.github.io/feature.jpg b/exampleSite/content/users/jeknom.github.io/feature.jpg index 88eba36cf..0191b6071 100644 Binary files a/exampleSite/content/users/jeknom.github.io/feature.jpg and b/exampleSite/content/users/jeknom.github.io/feature.jpg differ diff --git a/exampleSite/content/users/joush007.github.io/feature.jpg b/exampleSite/content/users/joush007.github.io/feature.jpg index f0029bac6..4c9bc0a28 100644 Binary files a/exampleSite/content/users/joush007.github.io/feature.jpg and b/exampleSite/content/users/joush007.github.io/feature.jpg differ diff --git a/exampleSite/content/users/joush007.github.io/index.md b/exampleSite/content/users/joush007.github.io/index.md index c54eb729d..900ca8fd6 100644 --- a/exampleSite/content/users/joush007.github.io/index.md +++ b/exampleSite/content/users/joush007.github.io/index.md @@ -2,7 +2,7 @@ title: "joush007.github.io" tags: [Personal Site] externalUrl: "https://joush007.github.io" - date: 9936-08-08 + date: 9938-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/jundimubarok.com/feature.jpg b/exampleSite/content/users/jundimubarok.com/feature.jpg index fc40ec670..89c259027 100644 Binary files a/exampleSite/content/users/jundimubarok.com/feature.jpg and b/exampleSite/content/users/jundimubarok.com/feature.jpg differ diff --git a/exampleSite/content/users/jundimubarok.com/index.md b/exampleSite/content/users/jundimubarok.com/index.md index a316d67ce..769105d81 100644 --- a/exampleSite/content/users/jundimubarok.com/index.md +++ b/exampleSite/content/users/jundimubarok.com/index.md @@ -2,7 +2,7 @@ title: "jundimubarok.com" tags: [Personal site] externalUrl: "https://jundimubarok.com/" - date: 9949-08-08 + date: 9951-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/kylemalloy.com/feature.jpg b/exampleSite/content/users/kylemalloy.com/feature.jpg index c0a26fedb..cc855d093 100644 Binary files a/exampleSite/content/users/kylemalloy.com/feature.jpg and b/exampleSite/content/users/kylemalloy.com/feature.jpg differ diff --git a/exampleSite/content/users/kylemalloy.com/index.md b/exampleSite/content/users/kylemalloy.com/index.md index 22a28bc16..446a1d1cb 100644 --- a/exampleSite/content/users/kylemalloy.com/index.md +++ b/exampleSite/content/users/kylemalloy.com/index.md @@ -2,7 +2,7 @@ title: "kylemalloy.com" tags: [Personal site] externalUrl: "https://kylemalloy.com" - date: 9937-08-08 + date: 9939-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/lelouvincx.github.io/feature.jpg b/exampleSite/content/users/lelouvincx.github.io/feature.jpg index fc2066e7d..0d323527e 100644 Binary files a/exampleSite/content/users/lelouvincx.github.io/feature.jpg and b/exampleSite/content/users/lelouvincx.github.io/feature.jpg differ diff --git a/exampleSite/content/users/lelouvincx.github.io/index.md b/exampleSite/content/users/lelouvincx.github.io/index.md index 5be6dc379..4cc09d51f 100644 --- a/exampleSite/content/users/lelouvincx.github.io/index.md +++ b/exampleSite/content/users/lelouvincx.github.io/index.md @@ -2,7 +2,7 @@ title: "lelouvincx.github.io" tags: [Personal site] externalUrl: "https://lelouvincx.github.io/" - date: 9959-08-08 + date: 9961-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg b/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg index ae0e269f3..b9b6ed043 100644 Binary files a/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg and b/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg differ diff --git a/exampleSite/content/users/m3upt.com/feature.jpg b/exampleSite/content/users/m3upt.com/feature.jpg index 7f80059d5..4da170802 100644 Binary files a/exampleSite/content/users/m3upt.com/feature.jpg and b/exampleSite/content/users/m3upt.com/feature.jpg differ diff --git a/exampleSite/content/users/m3upt.com/index.md b/exampleSite/content/users/m3upt.com/index.md index eaab77e80..eef1b8193 100644 --- a/exampleSite/content/users/m3upt.com/index.md +++ b/exampleSite/content/users/m3upt.com/index.md @@ -2,7 +2,7 @@ title: "m3upt.com" tags: [Project site] externalUrl: "https://m3upt.com" - date: 9951-08-08 + date: 9953-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/madoke.org/feature.jpg b/exampleSite/content/users/madoke.org/feature.jpg index a5635306f..eeb3be557 100644 Binary files a/exampleSite/content/users/madoke.org/feature.jpg and b/exampleSite/content/users/madoke.org/feature.jpg differ diff --git a/exampleSite/content/users/mariuskimmina.com/feature.jpg b/exampleSite/content/users/mariuskimmina.com/feature.jpg index c695e72ec..c65f97545 100644 Binary files a/exampleSite/content/users/mariuskimmina.com/feature.jpg and b/exampleSite/content/users/mariuskimmina.com/feature.jpg differ diff --git a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg index 783177f8a..a3f682294 100644 Binary files a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg and b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg differ diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.md b/exampleSite/content/users/marupanda.art-marucomics/index.md index d879eb107..b609fd849 100644 --- a/exampleSite/content/users/marupanda.art-marucomics/index.md +++ b/exampleSite/content/users/marupanda.art-marucomics/index.md @@ -2,7 +2,7 @@ title: "marupanda.art/marucomics" tags: [Comics site] externalUrl: "https://marupanda.art/marucomics/" - date: 9953-08-08 + date: 9955-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/mayer.life/feature.jpg b/exampleSite/content/users/mayer.life/feature.jpg index 7a6dd3026..1d7d80a55 100644 Binary files a/exampleSite/content/users/mayer.life/feature.jpg and b/exampleSite/content/users/mayer.life/feature.jpg differ diff --git a/exampleSite/content/users/mayer.life/index.md b/exampleSite/content/users/mayer.life/index.md index 3ab5be0e8..a49861483 100644 --- a/exampleSite/content/users/mayer.life/index.md +++ b/exampleSite/content/users/mayer.life/index.md @@ -2,7 +2,7 @@ title: "mayer.life" tags: [Personal site] externalUrl: "https://mayer.life" - date: 9943-08-08 + date: 9945-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg index 233c903c2..42bf1dad9 100644 Binary files a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg and b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg differ diff --git a/exampleSite/content/users/muhalvin.github.io/feature.jpg b/exampleSite/content/users/muhalvin.github.io/feature.jpg index c1ff44607..f7e22074c 100644 Binary files a/exampleSite/content/users/muhalvin.github.io/feature.jpg and b/exampleSite/content/users/muhalvin.github.io/feature.jpg differ diff --git a/exampleSite/content/users/n9o.xyz/feature.jpg b/exampleSite/content/users/n9o.xyz/feature.jpg index 7ff6b5916..d66ad3234 100644 Binary files a/exampleSite/content/users/n9o.xyz/feature.jpg and b/exampleSite/content/users/n9o.xyz/feature.jpg differ diff --git a/exampleSite/content/users/nick.bouwhuis.net/feature.jpg b/exampleSite/content/users/nick.bouwhuis.net/feature.jpg index c73c8ae87..c492bae3b 100644 Binary files a/exampleSite/content/users/nick.bouwhuis.net/feature.jpg and b/exampleSite/content/users/nick.bouwhuis.net/feature.jpg differ diff --git a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg b/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg index 79fd584e4..b0e7c7461 100644 Binary files a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg and b/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg differ diff --git a/exampleSite/content/users/nikarashihatsu.github.io/index.md b/exampleSite/content/users/nikarashihatsu.github.io/index.md index f09944795..ef31ada77 100644 --- a/exampleSite/content/users/nikarashihatsu.github.io/index.md +++ b/exampleSite/content/users/nikarashihatsu.github.io/index.md @@ -2,7 +2,7 @@ title: "nikarashihatsu.github.io" tags: [Personal site] externalUrl: "https://nikarashihatsu.github.io/" - date: 9957-08-08 + date: 9959-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg index e59f2364c..4e3cfd9e7 100644 Binary files a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg and b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg differ diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/feature.jpg b/exampleSite/content/users/notes.bluesdriveamelia.space/feature.jpg index 76542dc01..6183d9f1f 100644 Binary files a/exampleSite/content/users/notes.bluesdriveamelia.space/feature.jpg and b/exampleSite/content/users/notes.bluesdriveamelia.space/feature.jpg differ diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.md index d81815097..491711b0e 100644 --- a/exampleSite/content/users/notes.bluesdriveamelia.space/index.md +++ b/exampleSite/content/users/notes.bluesdriveamelia.space/index.md @@ -2,7 +2,7 @@ title: "notes.bluesdriveamelia.space" tags: [Blog,Personal site] externalUrl: "https://notes.bluesdriveamelia.space/" - date: 9921-08-08 + date: 9923-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/ohdmire.github.io/feature.jpg b/exampleSite/content/users/ohdmire.github.io/feature.jpg index 72647da54..eba8ce455 100644 Binary files a/exampleSite/content/users/ohdmire.github.io/feature.jpg and b/exampleSite/content/users/ohdmire.github.io/feature.jpg differ diff --git a/exampleSite/content/users/ohdmire.github.io/index.md b/exampleSite/content/users/ohdmire.github.io/index.md index 71f429a69..ee9f235ec 100644 --- a/exampleSite/content/users/ohdmire.github.io/index.md +++ b/exampleSite/content/users/ohdmire.github.io/index.md @@ -2,7 +2,7 @@ title: "ohdmire.github.io" tags: [Personal site] externalUrl: "https://ohdmire.github.io" - date: 9940-08-08 + date: 9942-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/omarohn.de/feature.jpg b/exampleSite/content/users/omarohn.de/feature.jpg index bd5bde23a..d38bda40e 100644 Binary files a/exampleSite/content/users/omarohn.de/feature.jpg and b/exampleSite/content/users/omarohn.de/feature.jpg differ diff --git a/exampleSite/content/users/pacochan.net/feature.jpg b/exampleSite/content/users/pacochan.net/feature.jpg index 0445baf72..41bd8259e 100644 Binary files a/exampleSite/content/users/pacochan.net/feature.jpg and b/exampleSite/content/users/pacochan.net/feature.jpg differ diff --git a/exampleSite/content/users/pacochan.net/index.md b/exampleSite/content/users/pacochan.net/index.md index b46717b7c..18bcddae4 100644 --- a/exampleSite/content/users/pacochan.net/index.md +++ b/exampleSite/content/users/pacochan.net/index.md @@ -2,7 +2,7 @@ title: "pacochan.net" tags: [Personal site] externalUrl: "https://pacochan.net" - date: 9950-08-08 + date: 9952-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/pmnxis.github.io/feature.jpg b/exampleSite/content/users/pmnxis.github.io/feature.jpg index 077fdca0e..c86275a4a 100644 Binary files a/exampleSite/content/users/pmnxis.github.io/feature.jpg and b/exampleSite/content/users/pmnxis.github.io/feature.jpg differ diff --git a/exampleSite/content/users/priyakdey.com/feature.jpg b/exampleSite/content/users/priyakdey.com/feature.jpg index 34308c212..de228eaf2 100644 Binary files a/exampleSite/content/users/priyakdey.com/feature.jpg and b/exampleSite/content/users/priyakdey.com/feature.jpg differ diff --git a/exampleSite/content/users/rdgo.dev/feature.jpg b/exampleSite/content/users/rdgo.dev/feature.jpg index 3bd3dcfd0..0d7e42fda 100644 Binary files a/exampleSite/content/users/rdgo.dev/feature.jpg and b/exampleSite/content/users/rdgo.dev/feature.jpg differ diff --git a/exampleSite/content/users/rejowski.xyz/feature.jpg b/exampleSite/content/users/rejowski.xyz/feature.jpg index f3f392611..bf004fb49 100644 Binary files a/exampleSite/content/users/rejowski.xyz/feature.jpg and b/exampleSite/content/users/rejowski.xyz/feature.jpg differ diff --git a/exampleSite/content/users/rejowski.xyz/index.md b/exampleSite/content/users/rejowski.xyz/index.md index 13eeb6729..9f25af418 100644 --- a/exampleSite/content/users/rejowski.xyz/index.md +++ b/exampleSite/content/users/rejowski.xyz/index.md @@ -2,7 +2,7 @@ title: "rejowski.xyz" tags: [Personal Site] externalUrl: "https://rejowski.xyz/" - date: 9935-08-08 + date: 9937-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/renaud.warnotte.be/feature.jpg b/exampleSite/content/users/renaud.warnotte.be/feature.jpg index ebd948a7d..44cdcd431 100644 Binary files a/exampleSite/content/users/renaud.warnotte.be/feature.jpg and b/exampleSite/content/users/renaud.warnotte.be/feature.jpg differ diff --git a/exampleSite/content/users/renaud.warnotte.be/index.md b/exampleSite/content/users/renaud.warnotte.be/index.md index 677732bd1..28b1ff5b1 100644 --- a/exampleSite/content/users/renaud.warnotte.be/index.md +++ b/exampleSite/content/users/renaud.warnotte.be/index.md @@ -2,7 +2,7 @@ title: "renaud.warnotte.be" tags: [Personal site] externalUrl: "https://renaud.warnotte.be" - date: 9931-08-08 + date: 9933-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/ricklan.photography/feature.jpg b/exampleSite/content/users/ricklan.photography/feature.jpg index 3153dbc5e..b9bb02a30 100644 Binary files a/exampleSite/content/users/ricklan.photography/feature.jpg and b/exampleSite/content/users/ricklan.photography/feature.jpg differ diff --git a/exampleSite/content/users/ricklan.photography/index.md b/exampleSite/content/users/ricklan.photography/index.md index 33449f5f3..72cd8ce1d 100644 --- a/exampleSite/content/users/ricklan.photography/index.md +++ b/exampleSite/content/users/ricklan.photography/index.md @@ -2,7 +2,7 @@ title: "ricklan.photography" tags: [Personal site] externalUrl: "https://ricklan.photography" - date: 9939-08-08 + date: 9941-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/scottmckendry.tech/feature.jpg b/exampleSite/content/users/scottmckendry.tech/feature.jpg index d844aa17e..079b3f77a 100644 Binary files a/exampleSite/content/users/scottmckendry.tech/feature.jpg and b/exampleSite/content/users/scottmckendry.tech/feature.jpg differ diff --git a/exampleSite/content/users/scottmckendry.tech/index.md b/exampleSite/content/users/scottmckendry.tech/index.md index 3e749e16b..12c2c29f1 100644 --- a/exampleSite/content/users/scottmckendry.tech/index.md +++ b/exampleSite/content/users/scottmckendry.tech/index.md @@ -2,7 +2,7 @@ title: "scottmckendry.tech" tags: [Personal site] externalUrl: "https://scottmckendry.tech" - date: 9942-08-08 + date: 9944-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/sdehm.dev/feature.jpg b/exampleSite/content/users/sdehm.dev/feature.jpg index 5b63852fe..afa58496e 100644 Binary files a/exampleSite/content/users/sdehm.dev/feature.jpg and b/exampleSite/content/users/sdehm.dev/feature.jpg differ diff --git a/exampleSite/content/users/seanomahoney.com/feature.jpg b/exampleSite/content/users/seanomahoney.com/feature.jpg deleted file mode 100644 index f79c24fb0..000000000 Binary files a/exampleSite/content/users/seanomahoney.com/feature.jpg and /dev/null differ diff --git a/exampleSite/content/users/shenshu.fun/feature.jpg b/exampleSite/content/users/shenshu.fun/feature.jpg deleted file mode 100644 index fcbd0c2c6..000000000 Binary files a/exampleSite/content/users/shenshu.fun/feature.jpg and /dev/null differ diff --git a/exampleSite/content/users/shenshu.fun/index.md b/exampleSite/content/users/shenshu.fun/index.md deleted file mode 100644 index 9fc9ae32a..000000000 --- a/exampleSite/content/users/shenshu.fun/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- - title: "shenshu.fun" - tags: [Personal site] - externalUrl: "https://shenshu.fun/" - date: 9962-08-08 - showDate: false - showAuthor: false - showReadingTime: false - showEdit: false - showLikes: false - showViews: false - layoutBackgroundHeaderSpace: false - --- diff --git a/exampleSite/content/users/smileguide.github.io/feature.jpg b/exampleSite/content/users/smileguide.github.io/feature.jpg deleted file mode 100644 index 5da69ee87..000000000 Binary files a/exampleSite/content/users/smileguide.github.io/feature.jpg and /dev/null differ diff --git a/exampleSite/content/users/smileguide.github.io/index.md b/exampleSite/content/users/smileguide.github.io/index.md deleted file mode 100644 index f4a62076a..000000000 --- a/exampleSite/content/users/smileguide.github.io/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- - title: "smileguide.github.io" - tags: [Personal site] - externalUrl: "https://smileguide.github.io" - date: 9919-08-08 - showDate: false - showAuthor: false - showReadingTime: false - showEdit: false - showLikes: false - showViews: false - layoutBackgroundHeaderSpace: false - --- diff --git a/exampleSite/content/users/talkdimsum.com/feature.jpg b/exampleSite/content/users/talkdimsum.com/feature.jpg index 13bca7d9e..b72268bca 100644 Binary files a/exampleSite/content/users/talkdimsum.com/feature.jpg and b/exampleSite/content/users/talkdimsum.com/feature.jpg differ diff --git a/exampleSite/content/users/technicaldc.github.io/feature.jpg b/exampleSite/content/users/technicaldc.github.io/feature.jpg index a43a7357f..8d65ce5a2 100644 Binary files a/exampleSite/content/users/technicaldc.github.io/feature.jpg and b/exampleSite/content/users/technicaldc.github.io/feature.jpg differ diff --git a/exampleSite/content/users/technicaldc.github.io/index.md b/exampleSite/content/users/technicaldc.github.io/index.md index 72e9db938..457b639d3 100644 --- a/exampleSite/content/users/technicaldc.github.io/index.md +++ b/exampleSite/content/users/technicaldc.github.io/index.md @@ -2,7 +2,7 @@ title: "technicaldc.github.io" tags: [Personal Site,Blog] externalUrl: "https://technicaldc.github.io/" - date: 9929-08-08 + date: 9931-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/technicat.com/feature.jpg b/exampleSite/content/users/technicat.com/feature.jpg index 16ebb626f..54eaf3f8f 100644 Binary files a/exampleSite/content/users/technicat.com/feature.jpg and b/exampleSite/content/users/technicat.com/feature.jpg differ diff --git a/exampleSite/content/users/the-maze.net/feature.jpg b/exampleSite/content/users/the-maze.net/feature.jpg index 5ca7ce0ed..61a92906a 100644 Binary files a/exampleSite/content/users/the-maze.net/feature.jpg and b/exampleSite/content/users/the-maze.net/feature.jpg differ diff --git a/exampleSite/content/users/the-maze.net/index.md b/exampleSite/content/users/the-maze.net/index.md index 32a96d635..38fe06ebd 100644 --- a/exampleSite/content/users/the-maze.net/index.md +++ b/exampleSite/content/users/the-maze.net/index.md @@ -2,7 +2,7 @@ title: "the-maze.net" tags: [Personal site,Blog] externalUrl: "https://www.the-maze.net/" - date: 9925-08-08 + date: 9927-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/theindiecoder.cloud/feature.jpg b/exampleSite/content/users/theindiecoder.cloud/feature.jpg index 4992f2711..cfbb8ebb7 100644 Binary files a/exampleSite/content/users/theindiecoder.cloud/feature.jpg and b/exampleSite/content/users/theindiecoder.cloud/feature.jpg differ diff --git a/exampleSite/content/users/theindiecoder.cloud/index.md b/exampleSite/content/users/theindiecoder.cloud/index.md index a45773db7..3e48028ac 100644 --- a/exampleSite/content/users/theindiecoder.cloud/index.md +++ b/exampleSite/content/users/theindiecoder.cloud/index.md @@ -2,7 +2,7 @@ title: "theindiecoder.cloud" tags: [Personal site] externalUrl: "https://theindiecoder.cloud" - date: 9945-08-08 + date: 9947-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/todreamr.github.io/feature.jpg b/exampleSite/content/users/todreamr.github.io/feature.jpg new file mode 100644 index 000000000..2d8bb644c Binary files /dev/null and b/exampleSite/content/users/todreamr.github.io/feature.jpg differ diff --git a/exampleSite/content/users/seanomahoney.com/index.md b/exampleSite/content/users/todreamr.github.io/index.md similarity index 69% rename from exampleSite/content/users/seanomahoney.com/index.md rename to exampleSite/content/users/todreamr.github.io/index.md index 6027982f0..1dc7d1916 100644 --- a/exampleSite/content/users/seanomahoney.com/index.md +++ b/exampleSite/content/users/todreamr.github.io/index.md @@ -1,8 +1,8 @@ --- - title: "seanomahoney.com" + title: "todreamr.github.io" tags: [Personal site] - externalUrl: "https://seanomahoney.com/" - date: 9952-08-08 + externalUrl: "https://todreamr.github.io/" + date: 9922-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/users.json b/exampleSite/content/users/users.json index 06f9d2386..ced839099 100644 --- a/exampleSite/content/users/users.json +++ b/exampleSite/content/users/users.json @@ -112,13 +112,6 @@ "Personal site" ] }, - { - "title": "jamesdixon.dev", - "url": "https://jamesdixon.dev", - "tags": [ - "Personal site" - ] - }, { "title": "blastomussa.dev", "url": "https://blastomussa.dev", @@ -259,20 +252,6 @@ "Personal site" ] }, - { - "title": "shenshu.fun", - "url": "https://shenshu.fun/", - "tags": [ - "Personal site" - ] - }, - { - "title": "hellstabber.github.io", - "url": "https://hellstabber.github.io/", - "tags": [ - "Personal site" - ] - }, { "title": "clemsau.com", "url": "https://clemsau.com/", @@ -329,13 +308,6 @@ "Comics site" ] }, - { - "title": "seanomahoney.com", - "url": "https://seanomahoney.com/", - "tags": [ - "Personal site" - ] - }, { "title": "m3upt.com", "url": "https://m3upt.com", @@ -568,10 +540,10 @@ ] }, { - "title": "smileguide.github.io", - "url": "https://smileguide.github.io", - "tags": [ - "Personal site" + "title": "todreamr.github.io", + "url" : "https://todreamr.github.io/", + "tags":[ + "Personal site" ] } ] diff --git a/exampleSite/content/users/v-y-s.com/feature.jpg b/exampleSite/content/users/v-y-s.com/feature.jpg index 5fc8d4257..107229a2b 100644 Binary files a/exampleSite/content/users/v-y-s.com/feature.jpg and b/exampleSite/content/users/v-y-s.com/feature.jpg differ diff --git a/exampleSite/content/users/v-y-s.com/index.md b/exampleSite/content/users/v-y-s.com/index.md index 97792a7a5..e27e2aadb 100644 --- a/exampleSite/content/users/v-y-s.com/index.md +++ b/exampleSite/content/users/v-y-s.com/index.md @@ -2,7 +2,7 @@ title: "v-y-s.com" tags: [Personal Site] externalUrl: "https://v-y-s.com/" - date: 9933-08-08 + date: 9935-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/vividscc.com/feature.jpg b/exampleSite/content/users/vividscc.com/feature.jpg index 75db54d3b..4ef0c93e9 100644 Binary files a/exampleSite/content/users/vividscc.com/feature.jpg and b/exampleSite/content/users/vividscc.com/feature.jpg differ diff --git a/exampleSite/content/users/vkmki001.github.io/feature.jpg b/exampleSite/content/users/vkmki001.github.io/feature.jpg index b2a0bd253..6f5ea7d33 100644 Binary files a/exampleSite/content/users/vkmki001.github.io/feature.jpg and b/exampleSite/content/users/vkmki001.github.io/feature.jpg differ diff --git a/exampleSite/content/users/vkmki001.github.io/index.md b/exampleSite/content/users/vkmki001.github.io/index.md index f489e81d8..3db89b23a 100644 --- a/exampleSite/content/users/vkmki001.github.io/index.md +++ b/exampleSite/content/users/vkmki001.github.io/index.md @@ -2,7 +2,7 @@ title: "vkmki001.github.io" tags: [Personal site] externalUrl: "https://vkmki001.github.io/" - date: 9948-08-08 + date: 9950-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/exampleSite/content/users/weaxsey.org/feature.jpg b/exampleSite/content/users/weaxsey.org/feature.jpg index d63b25531..621628d0a 100644 Binary files a/exampleSite/content/users/weaxsey.org/feature.jpg and b/exampleSite/content/users/weaxsey.org/feature.jpg differ diff --git a/exampleSite/content/users/weaxsey.org/index.md b/exampleSite/content/users/weaxsey.org/index.md index 02d8f4897..8952250b9 100644 --- a/exampleSite/content/users/weaxsey.org/index.md +++ b/exampleSite/content/users/weaxsey.org/index.md @@ -2,7 +2,7 @@ title: "weaxsey.org" tags: [Personal site] externalUrl: "https://weaxsey.org/" - date: 9958-08-08 + date: 9960-08-08 showDate: false showAuthor: false showReadingTime: false diff --git a/i18n/es.yaml b/i18n/es.yaml index 53aefc2ad..4c10f3b30 100644 --- a/i18n/es.yaml +++ b/i18n/es.yaml @@ -25,6 +25,9 @@ article: part: "Parte" this_article: "Este artÃculo" related_articles: "Relacionados" + zen_mode_title: + enable: "Activar modo zen" + disable: "Desactivar modo zen" author: byline_title: "Autor" diff --git a/layouts/partials/article-link/card-related.html b/layouts/partials/article-link/card-related.html index 6ea57ad8b..b1fcb2baa 100644 --- a/layouts/partials/article-link/card-related.html +++ b/layouts/partials/article-link/card-related.html @@ -13,6 +13,10 @@ {{- $images := $.Resources.ByType "image" -}} {{- $featured := $images.GetMatch "*feature*" -}} {{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} + {{ if and .Params.featureimage (not $featured) }} + {{- $url:= .Params.featureimage -}} + {{ $featured = resources.GetRemote $url }} + {{ end }} {{- if not $featured }}{{ with .Site.Params.defaultFeaturedImage }}{{ $featured = resources.Get . }}{{ end }}{{ end -}} {{- with $featured -}} {{ if $disableImageOptimization }} diff --git a/layouts/partials/article-link/card.html b/layouts/partials/article-link/card.html index f5eb8f54d..53c9c7689 100644 --- a/layouts/partials/article-link/card.html +++ b/layouts/partials/article-link/card.html @@ -13,6 +13,10 @@ {{- $images := $.Resources.ByType "image" -}} {{- $featured := $images.GetMatch "*feature*" -}} {{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} + {{ if and .Params.featureimage (not $featured) }} + {{- $url:= .Params.featureimage -}} + {{ $featured = resources.GetRemote $url }} + {{ end }} {{- if not $featured }}{{ with .Site.Params.defaultFeaturedImage }}{{ $featured = resources.Get . }}{{ end }}{{ end -}} {{ if .Params.hideFeatureImage }}{{ $featured = false }}{{ end }} {{- with $featured -}} diff --git a/layouts/partials/article-link/simple.html b/layouts/partials/article-link/simple.html index 8c9948250..24bf281bf 100644 --- a/layouts/partials/article-link/simple.html +++ b/layouts/partials/article-link/simple.html @@ -40,6 +40,10 @@ {{- $images := $.Resources.ByType "image" -}} {{- $featured := $images.GetMatch "*feature*" -}} {{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} + {{ if and .Params.featureimage (not $featured) }} + {{- $url:= .Params.featureimage -}} + {{ $featured = resources.GetRemote $url }} + {{ end }} {{- if not $featured }}{{ with .Site.Params.defaultFeaturedImage }}{{ $featured = resources.Get . }}{{ end }}{{ end -}} {{ if .Params.hideFeatureImage }}{{ $featured = false }}{{ end }} {{- with $featured -}} diff --git a/layouts/partials/author-extra.html b/layouts/partials/author-extra.html index 4e81d07ec..701e9fa79 100644 --- a/layouts/partials/author-extra.html +++ b/layouts/partials/author-extra.html @@ -1,14 +1,21 @@ {{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }}