Compare commits
86 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d440a8856 | ||
|
|
8e14d69e14 | ||
|
|
9ea59af0af | ||
|
|
ca9709f2e9 | ||
|
|
f4648e5f87 | ||
|
|
f4fd472e6e | ||
|
|
e29a3f719f | ||
|
|
9e381ed619 | ||
|
|
580e13b6d6 | ||
|
|
7f929c2fd8 | ||
|
|
393791265c | ||
|
|
ab6738cd4d | ||
|
|
4ec4062494 | ||
|
|
664eea75f9 | ||
|
|
c77c69da84 | ||
|
|
353f438c5e | ||
|
|
7d06ca6c38 | ||
|
|
02bcbb7a12 | ||
|
|
e87e066aa7 | ||
|
|
14e464731c | ||
|
|
19520b4481 | ||
|
|
289b3ff7ad | ||
|
|
3da195bad1 | ||
|
|
66253cbdd0 | ||
|
|
4ce27882fe | ||
|
|
c7c75e3075 | ||
|
|
02b6b46427 | ||
|
|
ad55a5fb93 | ||
|
|
bf91c39b62 | ||
|
|
b6c0f889b8 | ||
|
|
9545dd1a6f | ||
|
|
5f5fdc51d0 | ||
|
|
fd78299fde | ||
|
|
d332b54c94 | ||
|
|
d8dc81ab53 | ||
|
|
17e33482b1 | ||
|
|
44e14ea3b8 | ||
|
|
ddf79f4573 | ||
|
|
008347865d | ||
|
|
9efba1ffe1 | ||
|
|
eefbba7f2d | ||
|
|
8a2eaff8fa | ||
|
|
2c3141f67a | ||
|
|
549d7d48ff | ||
|
|
5c6b8dc7d5 | ||
|
|
f4c1e17906 | ||
|
|
11e091a1e6 | ||
|
|
e4096c80ca | ||
|
|
602b012bfe | ||
|
|
b37fe87c3c | ||
|
|
863354a960 | ||
|
|
8c4fb4d64c | ||
|
|
f85443d3d5 | ||
|
|
392e89722d | ||
|
|
f481e64411 | ||
|
|
c97a2b0d04 | ||
|
|
e06f703799 | ||
|
|
1b2c7458a5 | ||
|
|
477029e5f0 | ||
|
|
f3ecc71aad | ||
|
|
9a632353c2 | ||
|
|
c2740e9d0f | ||
|
|
e6470390d8 | ||
|
|
8511b60d3a | ||
|
|
f558c41f0e | ||
|
|
c6576af418 | ||
|
|
4825539121 | ||
|
|
6b56512f11 | ||
|
|
d2eedcb6a1 | ||
|
|
d3b9f1b54b | ||
|
|
0097326f4f | ||
|
|
66f840999b | ||
|
|
d08cdba52a | ||
|
|
9256ecd122 | ||
|
|
aa2a37c666 | ||
|
|
63f61dac75 | ||
|
|
560cde339b | ||
|
|
0a9b4a29a1 | ||
|
|
71b578b8c4 | ||
|
|
bbb657dfd4 | ||
|
|
9d7650b375 | ||
|
|
3798b09baf | ||
|
|
fd40a9da17 | ||
|
|
2d28e80052 | ||
|
|
1c24d6a6a2 | ||
|
|
e516b28bde |
1
assets/icons/xing.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Xing</title><path fill="currentColor" d="M18.188 0c-.517 0-.741.325-.927.66 0 0-7.455 13.224-7.702 13.657.015.024 4.919 9.023 4.919 9.023.17.308.436.66.967.66h3.454c.211 0 .375-.078.463-.22.089-.151.089-.346-.009-.536l-4.879-8.916c-.004-.006-.004-.016 0-.022L22.139.756c.095-.191.097-.387.006-.535C22.056.078 21.894 0 21.686 0h-3.498zM3.648 4.74c-.211 0-.385.074-.473.216-.09.149-.078.339.02.531l2.34 4.05c.004.01.004.016 0 .021L1.86 16.051c-.099.188-.093.381 0 .529.085.142.239.234.45.234h3.461c.518 0 .766-.348.945-.667l3.734-6.609-2.378-4.155c-.172-.315-.434-.659-.962-.659H3.648v.016z"/></svg>
|
||||
|
After Width: | Height: | Size: 675 B |
@@ -13,7 +13,7 @@ function createCopyButton(highlightDiv) {
|
||||
}
|
||||
|
||||
async function copyCodeToClipboard(button, highlightDiv) {
|
||||
const codeToCopy = highlightDiv.querySelector(":last-child > .chroma > code").innerText;
|
||||
const codeToCopy = highlightDiv.querySelector(":last-child").innerText;
|
||||
try {
|
||||
result = await navigator.permissions.query({ name: "clipboard-write" });
|
||||
if (result.state == "granted" || result.state == "prompt") {
|
||||
|
||||
@@ -7,7 +7,8 @@ function _getDefaultPackeryOptions() {
|
||||
}
|
||||
|
||||
(function init() {
|
||||
window.addEventListener("DOMContentLoaded", (event) => {
|
||||
|
||||
$(window).on("load", function () {
|
||||
console.groupCollapsed('[DEBUG] Gallery feature enable');
|
||||
let packeries = [];
|
||||
let nodeGalleries = document.querySelectorAll('.gallery');
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
[module.hugoVersion]
|
||||
extended = true
|
||||
min = "0.87.0"
|
||||
max = "0.121.2"
|
||||
max = "0.122.0"
|
||||
@@ -50,6 +50,7 @@ disableTextInHeader = false
|
||||
showDate = true
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showDateOnlyInArticle = false
|
||||
showDateUpdated = false
|
||||
showAuthor = true
|
||||
showHero = false
|
||||
|
||||
@@ -20,7 +20,7 @@ title = "Blowfish"
|
||||
bio = "A powerful, lightweight theme for Hugo built with Tailwind CSS."
|
||||
links = [
|
||||
{ x-twitter = "https://twitter.com/burufugu" },
|
||||
{ mastodon = "https://masto.ai/@blowfish" },
|
||||
#{ mastodon = "https://masto.ai/@blowfish" },
|
||||
{ github = "https://github.com/nunocoracao/blowfish" },
|
||||
]
|
||||
|
||||
|
||||
@@ -20,15 +20,16 @@
|
||||
pageRef = "docs/shortcodes"
|
||||
weight = 15
|
||||
|
||||
[[main]]
|
||||
name = "Samples"
|
||||
pageRef = "samples"
|
||||
weight = 16
|
||||
|
||||
[[main]]
|
||||
name = "Examples"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Samples"
|
||||
parent = "Examples"
|
||||
pageRef = "samples"
|
||||
weight = 16
|
||||
|
||||
[[main]]
|
||||
name = "Showcase"
|
||||
parent = "Examples"
|
||||
@@ -46,10 +47,10 @@
|
||||
pageRef = "users"
|
||||
weight = 90
|
||||
|
||||
#[[main]]
|
||||
# name = "Merch"
|
||||
# url = "http://tee.pub/lic/qwSlWVBL5zc"
|
||||
# weight = 100
|
||||
[[main]]
|
||||
name = "Merch"
|
||||
url = "https://www.teepublic.com/user/blowfish-store/t-shirts"
|
||||
weight = 100
|
||||
|
||||
#[[main]]
|
||||
# name = "Test"
|
||||
@@ -62,11 +63,11 @@
|
||||
url = "https://twitter.com/burufugu"
|
||||
weight = 200
|
||||
|
||||
[[main]]
|
||||
identifier = "mastodon"
|
||||
pre = "mastodon"
|
||||
url = "https://masto.ai/@blowfish"
|
||||
weight = 300
|
||||
#[[main]]
|
||||
# identifier = "mastodon"
|
||||
# pre = "mastodon"
|
||||
# weight = 300
|
||||
# url = "https://masto.ai/@blowfish"
|
||||
|
||||
[[main]]
|
||||
identifier = "github"
|
||||
|
||||
@@ -50,6 +50,7 @@ smartTOCHideUnfocusedChildren = false
|
||||
showDate = false
|
||||
showViews = true
|
||||
showLikes = true
|
||||
showDateOnlyInArticle = false
|
||||
showDateUpdated = false
|
||||
showAuthor = true
|
||||
showHero = true
|
||||
|
||||
@@ -3,13 +3,17 @@ title: "Welcome to Blowfish! :tada:"
|
||||
description: "This page was built using the Blowfish theme for Hugo."
|
||||
---
|
||||
|
||||
Welcome to Blowfish, one of the most flexible and robust Hugo themes. It is designed to be simple, fast and content-focused. Learn how to get started:
|
||||
Welcome to Blowfish, one of the most flexible and robust Hugo themes. It is designed to be simple, fast and content-focused. Learn more about how to install [here]({{< ref "docs/installation" >}}) or get started with our CLI using:
|
||||
|
||||
{{< article link="/docs/installation/" >}}
|
||||
```node
|
||||
npx blowfish-tools
|
||||
```
|
||||
|
||||
You can also find the complete theme documentation in [docs]({{< ref "docs" >}}). Blowfish is highly customizable and can be configured to fit your needs: from a static website to a blog. Checkout some [examples](/examples) and what some of our [users](/users) have been building.
|
||||
<iframe width="100%" height="350" src="https://www.youtube.com/embed/SgXhGb-7QbU?si=ce44baicuQ6zMeXz" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
|
||||
Explore the [shortcode list]({{< ref "docs/shortcodes" >}}) and [sample pages]({{< ref "samples" >}}) to get a feel for what Blowfish can do. If you like what you see, check out the project on <a target="_blank" href="https://github.com/nunocoracao/blowfish">Github</a> or read the [Installation guide]({{< ref "docs/installation" >}}) to get started.
|
||||
<!--You can also find the complete theme documentation in [docs]({{< ref "docs" >}}). Blowfish is highly customizable and can be configured to fit your needs: from a static website to a blog. Checkout some [examples](/examples) and what some of our [users](/users) have been building.
|
||||
|
||||
Explore the [shortcode list]({{< ref "docs/shortcodes" >}}) and [sample pages]({{< ref "samples" >}}) to get a feel for what Blowfish can do. If you like what you see, check out the project on <a target="_blank" href="https://github.com/nunocoracao/blowfish">Github</a> or read the [Installation guide]({{< ref "docs/installation" >}}) to get started.-->
|
||||
|
||||
<div class="flex px-4 py-2 mb-8 text-base rounded-md bg-primary-100 dark:bg-primary-900">
|
||||
<span class="flex items-center ltr:pr-3 rtl:pl-3 text-primary-400">
|
||||
|
||||
@@ -13,6 +13,13 @@ Blowfish is a highly customisable theme and uses some of the latest Hugo feature
|
||||
|
||||
The theme ships with a default configuration that gets you up and running with a basic blog or static website.
|
||||
|
||||
{{< alert "fire" >}}
|
||||
We just launched a CLI tool to help you get started with Blowfish. It will help you with installation and configuration. Install the CLI tool globally using:
|
||||
```bash
|
||||
npx blowfish-tools
|
||||
```
|
||||
{{< /alert >}}
|
||||
|
||||
> Configuration files bundled with the theme are provided in TOML format as this is the default Hugo syntax. Feel free to convert your config to YAML or JSON if you wish.
|
||||
|
||||
The default theme configuration is documented in each file so you can freely adjust the settings to meet your needs.
|
||||
@@ -130,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/`. |
|
||||
@@ -193,10 +200,10 @@ 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. |
|
||||
| `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. |
|
||||
| `homepage.showMoreLinkDest` | `/posts` | The destination of the show more button. |
|
||||
| `homepage.cardView` | `false` | Display recent articles as a gallery of cards. |
|
||||
| `homepage.cardViewScreenWidth` | `false` | Enhance the width of the recent articles card gallery to take the full width available. |
|
||||
@@ -208,6 +215,7 @@ Many of the article defaults here can be overridden on a per article basis by sp
|
||||
| `article.showDate` | `true` | Whether or not article dates are displayed. |
|
||||
| `article.showViews` | `false` | Whether or not article views are displayed. This requires firebase integrations to be enabled, look below. |
|
||||
| `article.showLikes` | `false` | Whether or not article likes are displayed. This requires firebase integrations to be enabled, look below. |
|
||||
| `article.showDateOnlyInArticle` | `false` | Show date within article even if not displayed in article listings/cards. |
|
||||
| `article.showDateUpdated` | `false` | Whether or not the dates articles were updated are displayed. |
|
||||
| `article.showAuthor` | `true` | Whether or not the author box is displayed in the article footer. |
|
||||
| `article.showHero` | `false` | Whether the thumbnail image will be shown as a hero image within each article page. |
|
||||
@@ -232,7 +240,7 @@ Many of the article defaults here can be overridden on a per article basis by sp
|
||||
| `article.showWordCount` | `false` | Whether or not article word counts are displayed. |
|
||||
| `article.showComments` | `false` | Whether or not the [comments partial]({{< ref "partials#comments" >}}) is included after the article footer. |
|
||||
| `article.sharingLinks` | _Not set_ | Which sharing links to display at the end of each article. When not provided, or set to `false` no links will be displayed. Available values are: "linkedin", "twitter", "reddit", "pinterest", "facebook", "email", "whatsapp", and "telegram" |
|
||||
| `article.showZenMode` | `false` | Flag to activate Zen Mode reading feature for articles. |
|
||||
| `article.showZenMode` | `false` | Flag to activate Zen Mode reading feature for articles. |
|
||||
|
||||
### List
|
||||
|
||||
|
||||
@@ -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. |
|
||||
|
||||
@@ -13,6 +13,15 @@ series_order: 3
|
||||
This section assumes you have already [installed the Blowfish theme]({{< ref "docs/installation" >}}).
|
||||
{{< /alert >}}
|
||||
|
||||
</br>
|
||||
{{< alert "fire" >}}
|
||||
We just launched a CLI tool to help you get started with Blowfish. It will help you with installation and configuration. Install the CLI tool globally using:
|
||||
```bash
|
||||
npx blowfish-tools
|
||||
```
|
||||
{{< /alert >}}
|
||||
|
||||
|
||||
The config files that ship with Blowfish contain all of the possible settings that the theme recognises. By default, many of these are commented out but you can simply uncomment them to activate or change a specific feature.
|
||||
|
||||
## Basic configuration
|
||||
|
||||
@@ -27,11 +27,16 @@ Make sure you are using **Hugo version 0.87.0** or later as the theme takes adva
|
||||
|
||||
You can find detailed installation instructions for your platform in the [Hugo docs](https://gohugo.io/getting-started/installing).
|
||||
|
||||
### Install with Blowfish Tools (Beta)
|
||||
### Blowfish Tools (recommended)
|
||||
|
||||
We just launched a new CLI tool to help you get started with Blowfish. It will create a new Hugo project, install the theme and set up the theme configuration files for you. It's still in beta so please [report any issues you find](https://github.com/nunocoracao/blowfish-tools).
|
||||
|
||||
Install the CLI tool globally using npm (or other package manager):
|
||||
```shell
|
||||
npx blowfish-tools
|
||||
```
|
||||
or
|
||||
|
||||
```shell
|
||||
npm i -g blowfish-tools
|
||||
```
|
||||
@@ -46,6 +51,10 @@ You can also run the command `blowfish-tools new` to create a new Hugo project a
|
||||
blowfish-tools new mynewsite
|
||||
```
|
||||
|
||||
Here's a quick video of how fast it is to get started with Blowfish using the CLI tool:
|
||||
|
||||
<iframe width="100%" height="350" src="https://www.youtube.com/embed/SgXhGb-7QbU?si=ce44baicuQ6zMeXz" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
|
||||
### Install Manually
|
||||
|
||||
#### Create a new site
|
||||
|
||||
@@ -127,7 +127,7 @@ Call to action
|
||||
<!-- prettier-ignore-start -->
|
||||
| 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) |
|
||||
<!-- prettier-ignore-end -->
|
||||
@@ -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.
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 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/` |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
@@ -385,9 +385,9 @@ The `keyword` component can be used to visually highlight certain important word
|
||||
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| ----------- | -------------------------------------------- |
|
||||
| `icon` | Optional icon to be used in the keyword |
|
||||
| Parameter | Description |
|
||||
| --------- | --------------------------------------- |
|
||||
| `icon` | Optional icon to be used in the keyword |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
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 |
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Blowfish Tutorial"
|
||||
date: 2023-10-02
|
||||
externalUrl: "hhttps://blowfish-tutorial.web.app/"
|
||||
externalUrl: "https://blowfish-tutorial.web.app/"
|
||||
---
|
||||
@@ -109,5 +109,6 @@ The full list of built-in icons and their corresponding names can referenced bel
|
||||
| wand-magic-sparkles | {{< icon wand-magic-sparkles >}} |
|
||||
| whatsapp | {{< icon whatsapp >}} |
|
||||
| x-twitter | {{< icon x-twitter >}} |
|
||||
| xing | {{< icon xing >}} |
|
||||
| xmark | {{< icon xmark >}} |
|
||||
| youtube | {{< icon youtube >}} |
|
||||
|
||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 56 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 80 KiB |
@@ -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
|
||||
|
||||
BIN
exampleSite/content/users/DXPetti.com/feature.jpg
Normal file
|
After Width: | Height: | Size: 147 KiB |
@@ -1,8 +1,8 @@
|
||||
---
|
||||
title: "hellstabber.github.io"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://hellstabber.github.io/"
|
||||
date: 9961-08-08
|
||||
title: "DXPetti.com"
|
||||
tags: [Personal site,Blog]
|
||||
externalUrl: "https://www.dxpetti.com/"
|
||||
date: 9925-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 23 KiB |
@@ -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
|
||||
|
||||
BIN
exampleSite/content/users/asterisk.lol/feature.jpg
Normal file
|
After Width: | Height: | Size: 69 KiB |
@@ -1,8 +1,8 @@
|
||||
---
|
||||
title: "jamesdixon.dev"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://jamesdixon.dev"
|
||||
date: 9983-08-08
|
||||
title: "asterisk.lol"
|
||||
tags: [Personal Site]
|
||||
externalUrl: "https://asterisk.lol"
|
||||
date: 9924-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 115 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 76 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 84 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 171 KiB After Width: | Height: | Size: 177 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 75 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 120 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 62 KiB |
BIN
exampleSite/content/users/datatodroids.tech/feature.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
13
exampleSite/content/users/datatodroids.tech/index.md
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
title: "datatodroids.tech"
|
||||
tags: [Personal site,Blog]
|
||||
externalUrl: "https://datatodroids.tech/"
|
||||
date: 9926-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
|
||||
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 37 KiB |
BIN
exampleSite/content/users/ekwska.com/feature.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |
@@ -1,8 +1,8 @@
|
||||
---
|
||||
title: "shenshu.fun"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://shenshu.fun/"
|
||||
date: 9962-08-08
|
||||
title: "ekwska.com"
|
||||
tags: [Personal blog]
|
||||
externalUrl: "https://ekwska.com"
|
||||
date: 9922-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 77 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 64 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 53 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 121 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 83 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 63 KiB |
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 92 KiB |