mirror of
				https://github.com/imfing/hextra.git
				synced 2025-11-04 01:04:54 -05:00 
			
		
		
		
	Compare commits
	
		
			19 Commits
		
	
	
		
			v0.8.6
			...
			2fc1b93a72
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					2fc1b93a72 | ||
| 
						 | 
					bc778ee243 | ||
| 
						 | 
					f377609eba | ||
| 
						 | 
					a9b992436e | ||
| 
						 | 
					7f5a7f2f5a | ||
| 
						 | 
					30fddec3fa | ||
| 
						 | 
					68dd327312 | ||
| 
						 | 
					0c90c1aa50 | ||
| 
						 | 
					fe2271b60b | ||
| 
						 | 
					bd34a5bad3 | ||
| 
						 | 
					0dcf7e7a40 | ||
| 
						 | 
					da56d153aa | ||
| 
						 | 
					5c0698c3c0 | ||
| 
						 | 
					ebdaf0fd4a | ||
| 
						 | 
					86a1f3fd96 | ||
| 
						 | 
					4c4f43779c | ||
| 
						 | 
					ff85e6951d | ||
| 
						 | 
					ec37876f4d | ||
| 
						 | 
					f65aca556d | 
							
								
								
									
										15
									
								
								.github/FUNDING.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								.github/FUNDING.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
# These are supported funding model platforms
 | 
			
		||||
 | 
			
		||||
github: imfing
 | 
			
		||||
patreon: # Replace with a single Patreon username
 | 
			
		||||
open_collective: # Replace with a single Open Collective username
 | 
			
		||||
ko_fi: # Replace with a single Ko-fi username
 | 
			
		||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
 | 
			
		||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
 | 
			
		||||
liberapay: # Replace with a single Liberapay username
 | 
			
		||||
issuehunt: # Replace with a single IssueHunt username
 | 
			
		||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
 | 
			
		||||
polar: # Replace with a single Polar username
 | 
			
		||||
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
 | 
			
		||||
thanks_dev: # Replace with a single thanks.dev username
 | 
			
		||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/ISSUE_TEMPLATE/bug_report.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/ISSUE_TEMPLATE/bug_report.md
									
									
									
									
										vendored
									
									
								
							@@ -17,6 +17,8 @@ assignees: ''
 | 
			
		||||
2. 
 | 
			
		||||
3. 
 | 
			
		||||
 | 
			
		||||
<!-- Provide a minimal example or link to a repository that reproduces the bug -->
 | 
			
		||||
 | 
			
		||||
**Expected Behavior**
 | 
			
		||||
 | 
			
		||||
<!-- What should have happened? -->
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										15
									
								
								.github/workflows/pages.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								.github/workflows/pages.yml
									
									
									
									
										vendored
									
									
								
							@@ -31,7 +31,7 @@ jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    env:
 | 
			
		||||
      HUGO_VERSION: 0.131.0
 | 
			
		||||
      HUGO_VERSION: 0.138.0
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
@@ -41,10 +41,10 @@ jobs:
 | 
			
		||||
      - name: Setup Go
 | 
			
		||||
        uses: actions/setup-go@v5
 | 
			
		||||
        with:
 | 
			
		||||
          go-version: '1.22'
 | 
			
		||||
          go-version: '1.23'
 | 
			
		||||
      - name: Setup Pages
 | 
			
		||||
        id: pages
 | 
			
		||||
        uses: actions/configure-pages@v4
 | 
			
		||||
        uses: actions/configure-pages@v5
 | 
			
		||||
      - name: Setup Hugo
 | 
			
		||||
        run: |
 | 
			
		||||
          wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
 | 
			
		||||
@@ -54,11 +54,12 @@ jobs:
 | 
			
		||||
          # For maximum backward compatibility with Hugo modules
 | 
			
		||||
          HUGO_ENVIRONMENT: production
 | 
			
		||||
          HUGO_ENV: production
 | 
			
		||||
        # Use the latest release of the theme to build exampleSite
 | 
			
		||||
        run: |
 | 
			
		||||
          hugo \
 | 
			
		||||
            --minify \
 | 
			
		||||
            --themesDir=../.. --source=exampleSite \
 | 
			
		||||
            --baseURL "${{ steps.pages.outputs.base_url }}/"
 | 
			
		||||
          cd exampleSite && rm go.mod
 | 
			
		||||
          hugo mod init github.com/imfing/hextra/exampleSite
 | 
			
		||||
          hugo mod get -u github.com/imfing/hextra
 | 
			
		||||
          hugo --minify --baseURL "${{ steps.pages.outputs.base_url }}/"
 | 
			
		||||
      - name: Upload artifact
 | 
			
		||||
        uses: actions/upload-pages-artifact@v3
 | 
			
		||||
        with:
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,7 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugins": [
 | 
			
		||||
    "prettier-plugin-go-template"
 | 
			
		||||
  ],
 | 
			
		||||
  "goTemplateBracketSpacing": true,
 | 
			
		||||
  "htmlWhitespaceSensitivity": "css",
 | 
			
		||||
  "printWidth": 200,
 | 
			
		||||
 
 | 
			
		||||
@@ -952,6 +952,10 @@ video {
 | 
			
		||||
.hx-border-t {
 | 
			
		||||
  border-top-width: 1px;
 | 
			
		||||
}
 | 
			
		||||
.hx-border-amber-200 {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(253 230 138 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-border-black\/5 {
 | 
			
		||||
  border-color: rgb(0 0 0 / 0.05);
 | 
			
		||||
}
 | 
			
		||||
@@ -967,6 +971,14 @@ video {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(107 114 128 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-border-green-200 {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(187 247 208 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-border-indigo-200 {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(199 210 254 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-border-orange-100 {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(255 237 213 / var(--tw-border-opacity));
 | 
			
		||||
@@ -982,6 +994,10 @@ video {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(254 249 195 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-bg-amber-100 {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(254 243 199 / var(--tw-bg-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-bg-black\/80 {
 | 
			
		||||
  background-color: rgb(0 0 0 / 0.8);
 | 
			
		||||
}
 | 
			
		||||
@@ -996,6 +1012,14 @@ video {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-bg-green-100 {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-bg-indigo-100 {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(224 231 255 / var(--tw-bg-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-bg-neutral-50 {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
 | 
			
		||||
@@ -1161,6 +1185,9 @@ video {
 | 
			
		||||
.hx-text-center {
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.hx-align-middle {
 | 
			
		||||
  vertical-align: middle;
 | 
			
		||||
}
 | 
			
		||||
.hx-align-text-bottom {
 | 
			
		||||
  vertical-align: text-bottom;
 | 
			
		||||
}
 | 
			
		||||
@@ -1237,6 +1264,10 @@ video {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: hsl(var(--primary-hue) 100% 50% / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-text-amber-900 {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(120 53 15 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-text-blue-900 {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(30 58 138 / var(--tw-text-opacity));
 | 
			
		||||
@@ -1268,6 +1299,14 @@ video {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(17 24 39 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-text-green-900 {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(20 83 45 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-text-indigo-900 {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(49 46 129 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.hx-text-orange-800 {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(154 52 18 / var(--tw-text-opacity));
 | 
			
		||||
@@ -2931,6 +2970,9 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
.dark\:hx-hidden:is(html[class~="dark"] *) {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-border-amber-200\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  border-color: rgb(253 230 138 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-border-blue-200\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  border-color: rgb(191 219 254 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
@@ -2941,6 +2983,12 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-border-green-200\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  border-color: rgb(187 247 208 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-border-indigo-200\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  border-color: rgb(199 210 254 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-border-neutral-700:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-border-opacity: 1;
 | 
			
		||||
  border-color: rgb(64 64 64 / var(--tw-border-opacity));
 | 
			
		||||
@@ -2961,6 +3009,9 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
.dark\:hx-border-yellow-200\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  border-color: rgb(254 240 138 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-bg-amber-900\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  background-color: rgb(120 53 15 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-bg-black\/60:is(html[class~="dark"] *) {
 | 
			
		||||
  background-color: rgb(0 0 0 / 0.6);
 | 
			
		||||
}
 | 
			
		||||
@@ -2977,6 +3028,12 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
.dark\:hx-bg-gray-50\/10:is(html[class~="dark"] *) {
 | 
			
		||||
  background-color: rgb(249 250 251 / 0.1);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-bg-green-900\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  background-color: rgb(20 83 45 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-bg-indigo-900\/30:is(html[class~="dark"] *) {
 | 
			
		||||
  background-color: rgb(49 46 129 / 0.3);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-bg-neutral-800:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-bg-opacity: 1;
 | 
			
		||||
  background-color: rgb(38 38 38 / var(--tw-bg-opacity));
 | 
			
		||||
@@ -3012,6 +3069,10 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
.dark\:hx-to-gray-400:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-gradient-to: #9ca3af var(--tw-gradient-to-position);
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-text-amber-200:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(253 230 138 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-text-blue-200:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(191 219 254 / var(--tw-text-opacity));
 | 
			
		||||
@@ -3036,6 +3097,14 @@ body:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(249 250 251 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-text-green-200:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(187 247 208 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-text-indigo-200:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(199 210 254 / var(--tw-text-opacity));
 | 
			
		||||
}
 | 
			
		||||
.dark\:hx-text-neutral-200:is(html[class~="dark"] *) {
 | 
			
		||||
  --tw-text-opacity: 1;
 | 
			
		||||
  color: rgb(229 229 229 / var(--tw-text-opacity));
 | 
			
		||||
 
 | 
			
		||||
@@ -289,3 +289,4 @@ youtube: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill=
 | 
			
		||||
x-twitter: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>
 | 
			
		||||
linkedin: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037c-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85c3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065a2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
 | 
			
		||||
slack: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52zm1.271 0a2.527 2.527 0 0 1 2.521-2.52a2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52zm0 1.271a2.528 2.528 0 0 1 2.521 2.521a2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521zm10.122 2.521a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522zm-1.268 0a2.528 2.528 0 0 1-2.523 2.521a2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522zm-2.523 10.122a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522zm0-1.268a2.527 2.527 0 0 1-2.52-2.523a2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523z" /></svg>
 | 
			
		||||
bluesky: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 530"><path fill="currentColor" d="M136 44c66 50 138 151 164 205 26-54 98-155 164-205 48-36 126-64 126 25 0 18-10 149-16 170-21 74-96 93-163 81 117 20 147 86 82 153-122 125-176-32-189-72-3-8-4-11-4-8 0-3-1 0-4 8-13 40-67 197-189 72-65-67-35-133 82-153-67 12-142-7-163-81-6-21-16-152-16-170 0-89 78-61 126-25z"/></svg>
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@ jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    env:
 | 
			
		||||
      HUGO_VERSION: 0.131.0
 | 
			
		||||
      HUGO_VERSION: 0.138.0
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
@@ -146,7 +146,7 @@ For more details, check out:
 | 
			
		||||
3. If you are not using [hextra-starter-template][hextra-starter-template], configure the following manually:
 | 
			
		||||
   - Configure the Build command to `hugo --gc --minify`
 | 
			
		||||
   - Specify the Publish directory to `public`
 | 
			
		||||
   - Add Environment variable `HUGO_VERSION` and set to `0.132.2`
 | 
			
		||||
   - Add Environment variable `HUGO_VERSION` and set to `0.138.0`, or alternatively, set it in `netlify.toml` file
 | 
			
		||||
4. Deploy!
 | 
			
		||||
 | 
			
		||||
Check [Hugo on Netlify](https://docs.netlify.com/integrations/frameworks/hugo/) for more details.
 | 
			
		||||
 
 | 
			
		||||
@@ -35,6 +35,44 @@ Blockquote with attribution
 | 
			
		||||
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Alerts
 | 
			
		||||
 | 
			
		||||
Alerts are a Markdown extension based on the blockquote syntax that you can use to emphasize critical information.
 | 
			
		||||
[GitHub-style alerts](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts) are supported.
 | 
			
		||||
Please make sure you are using the latest version of Hextra and [Hugo v0.134.0](https://github.com/gohugoio/hugo/releases/tag/v0.134.0) or later.
 | 
			
		||||
 | 
			
		||||
> [!NOTE]
 | 
			
		||||
> Useful information that users should know, even when skimming content.
 | 
			
		||||
 | 
			
		||||
> [!TIP]
 | 
			
		||||
> Helpful advice for doing things better or more easily.
 | 
			
		||||
 | 
			
		||||
> [!IMPORTANT]
 | 
			
		||||
> Key information users need to know to achieve their goal.
 | 
			
		||||
 | 
			
		||||
> [!WARNING]
 | 
			
		||||
> Urgent info that needs immediate user attention to avoid problems.
 | 
			
		||||
 | 
			
		||||
> [!CAUTION]
 | 
			
		||||
> Advises about risks or negative outcomes of certain actions.
 | 
			
		||||
 | 
			
		||||
```markdown {filename=Markdown}
 | 
			
		||||
> [!NOTE]
 | 
			
		||||
> Useful information that users should know, even when skimming content.
 | 
			
		||||
 | 
			
		||||
> [!TIP]
 | 
			
		||||
> Helpful advice for doing things better or more easily.
 | 
			
		||||
 | 
			
		||||
> [!IMPORTANT]
 | 
			
		||||
> Key information users need to know to achieve their goal.
 | 
			
		||||
 | 
			
		||||
> [!WARNING]
 | 
			
		||||
> Urgent info that needs immediate user attention to avoid problems.
 | 
			
		||||
 | 
			
		||||
> [!CAUTION]
 | 
			
		||||
> Advises about risks or negative outcomes of certain actions.
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Tables
 | 
			
		||||
 | 
			
		||||
Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
 | 
			
		||||
 
 | 
			
		||||
@@ -12,6 +12,26 @@ Open source projects powered by Hextra
 | 
			
		||||
</p>
 | 
			
		||||
 | 
			
		||||
{{< cards >}}
 | 
			
		||||
  {{< card
 | 
			
		||||
        link="https://github.com/modelcontextprotocol/specification"
 | 
			
		||||
        title="Model Context Protocol Specification"
 | 
			
		||||
        image="https://github.com/user-attachments/assets/1bb4f952-b8fc-43b5-9cbd-cd7213c2ba90"
 | 
			
		||||
        imageStyle="object-fit:cover; aspect-ratio:16/9;"
 | 
			
		||||
  >}}
 | 
			
		||||
 | 
			
		||||
  {{< card
 | 
			
		||||
        link="https://github.com/jonaspleyer/cellular_raza"
 | 
			
		||||
        title="cellular_raza"
 | 
			
		||||
        image="https://github.com/user-attachments/assets/f24c6455-b70a-419b-b025-e3d60101b673"
 | 
			
		||||
        imageStyle="object-fit:cover; aspect-ratio:16/9;"
 | 
			
		||||
  >}}
 | 
			
		||||
 | 
			
		||||
  {{< card
 | 
			
		||||
        link="https://github.com/mightymoud/sidekick"
 | 
			
		||||
        title="Sidekick"
 | 
			
		||||
        image="https://github.com/user-attachments/assets/4ae2a9d7-77b6-42eb-a9d7-5c4599f0f812"
 | 
			
		||||
        imageStyle="object-fit:cover; aspect-ratio:16/9;"
 | 
			
		||||
  >}}
 | 
			
		||||
 | 
			
		||||
  {{< card
 | 
			
		||||
        link="https://github.com/welding-torch/installc"
 | 
			
		||||
 
 | 
			
		||||
@@ -141,11 +141,14 @@
 | 
			
		||||
      "dark:hover:hx-text-gray-50",
 | 
			
		||||
      "dark:hover:hx-text-neutral-50",
 | 
			
		||||
      "dark:hover:hx-text-white",
 | 
			
		||||
      "dark:hx-bg-amber-900/30",
 | 
			
		||||
      "dark:hx-bg-black/60",
 | 
			
		||||
      "dark:hx-bg-blue-900/30",
 | 
			
		||||
      "dark:hx-bg-dark",
 | 
			
		||||
      "dark:hx-bg-dark/50",
 | 
			
		||||
      "dark:hx-bg-gray-50/10",
 | 
			
		||||
      "dark:hx-bg-green-900/30",
 | 
			
		||||
      "dark:hx-bg-indigo-900/30",
 | 
			
		||||
      "dark:hx-bg-neutral-800",
 | 
			
		||||
      "dark:hx-bg-neutral-900",
 | 
			
		||||
      "dark:hx-bg-orange-400/20",
 | 
			
		||||
@@ -155,9 +158,12 @@
 | 
			
		||||
      "dark:hx-bg-red-900/30",
 | 
			
		||||
      "dark:hx-bg-yellow-700/30",
 | 
			
		||||
      "dark:hx-block",
 | 
			
		||||
      "dark:hx-border-amber-200/30",
 | 
			
		||||
      "dark:hx-border-blue-200/30",
 | 
			
		||||
      "dark:hx-border-gray-100/20",
 | 
			
		||||
      "dark:hx-border-gray-400",
 | 
			
		||||
      "dark:hx-border-green-200/30",
 | 
			
		||||
      "dark:hx-border-indigo-200/30",
 | 
			
		||||
      "dark:hx-border-neutral-700",
 | 
			
		||||
      "dark:hx-border-neutral-800",
 | 
			
		||||
      "dark:hx-border-orange-400/30",
 | 
			
		||||
@@ -171,12 +177,15 @@
 | 
			
		||||
      "dark:hx-shadow-[0_-12px_16px_#111]",
 | 
			
		||||
      "dark:hx-shadow-[0_-1px_0_rgba(255,255,255,.1)_inset]",
 | 
			
		||||
      "dark:hx-shadow-none",
 | 
			
		||||
      "dark:hx-text-amber-200",
 | 
			
		||||
      "dark:hx-text-blue-200",
 | 
			
		||||
      "dark:hx-text-gray-100",
 | 
			
		||||
      "dark:hx-text-gray-200",
 | 
			
		||||
      "dark:hx-text-gray-300",
 | 
			
		||||
      "dark:hx-text-gray-400",
 | 
			
		||||
      "dark:hx-text-gray-50",
 | 
			
		||||
      "dark:hx-text-green-200",
 | 
			
		||||
      "dark:hx-text-indigo-200",
 | 
			
		||||
      "dark:hx-text-neutral-200",
 | 
			
		||||
      "dark:hx-text-neutral-400",
 | 
			
		||||
      "dark:hx-text-orange-300",
 | 
			
		||||
@@ -256,15 +265,19 @@
 | 
			
		||||
      "hover:hx-text-primary-600",
 | 
			
		||||
      "hx-absolute",
 | 
			
		||||
      "hx-align-[-2.5px]",
 | 
			
		||||
      "hx-align-middle",
 | 
			
		||||
      "hx-align-text-bottom",
 | 
			
		||||
      "hx-appearance-none",
 | 
			
		||||
      "hx-aspect-auto",
 | 
			
		||||
      "hx-bg-amber-100",
 | 
			
		||||
      "hx-bg-black/80",
 | 
			
		||||
      "hx-bg-black/[.05]",
 | 
			
		||||
      "hx-bg-blue-100",
 | 
			
		||||
      "hx-bg-clip-text",
 | 
			
		||||
      "hx-bg-gradient-to-r",
 | 
			
		||||
      "hx-bg-gray-100",
 | 
			
		||||
      "hx-bg-green-100",
 | 
			
		||||
      "hx-bg-indigo-100",
 | 
			
		||||
      "hx-bg-neutral-50",
 | 
			
		||||
      "hx-bg-orange-50",
 | 
			
		||||
      "hx-bg-primary-100",
 | 
			
		||||
@@ -277,12 +290,15 @@
 | 
			
		||||
      "hx-bg-yellow-50",
 | 
			
		||||
      "hx-block",
 | 
			
		||||
      "hx-border",
 | 
			
		||||
      "hx-border-amber-200",
 | 
			
		||||
      "hx-border-b",
 | 
			
		||||
      "hx-border-b-2",
 | 
			
		||||
      "hx-border-black/5",
 | 
			
		||||
      "hx-border-blue-200",
 | 
			
		||||
      "hx-border-gray-200",
 | 
			
		||||
      "hx-border-gray-500",
 | 
			
		||||
      "hx-border-green-200",
 | 
			
		||||
      "hx-border-indigo-200",
 | 
			
		||||
      "hx-border-orange-100",
 | 
			
		||||
      "hx-border-red-200",
 | 
			
		||||
      "hx-border-t",
 | 
			
		||||
@@ -468,6 +484,7 @@
 | 
			
		||||
      "hx-text-[.65rem]",
 | 
			
		||||
      "hx-text-[10px]",
 | 
			
		||||
      "hx-text-[color:hsl(var(--primary-hue),100%,50%)]",
 | 
			
		||||
      "hx-text-amber-900",
 | 
			
		||||
      "hx-text-base",
 | 
			
		||||
      "hx-text-blue-900",
 | 
			
		||||
      "hx-text-center",
 | 
			
		||||
@@ -479,6 +496,8 @@
 | 
			
		||||
      "hx-text-gray-700",
 | 
			
		||||
      "hx-text-gray-800",
 | 
			
		||||
      "hx-text-gray-900",
 | 
			
		||||
      "hx-text-green-900",
 | 
			
		||||
      "hx-text-indigo-900",
 | 
			
		||||
      "hx-text-left",
 | 
			
		||||
      "hx-text-lg",
 | 
			
		||||
      "hx-text-orange-800",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										9
									
								
								layouts/_default/_markup/render-blockquote-alert.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								layouts/_default/_markup/render-blockquote-alert.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
			
		||||
{{- if not (in (slice "note" "tip" "important" "warning" "caution") .AlertType) -}}
 | 
			
		||||
  {{- warnf "Alert type %s is not supported" .AlertType -}}
 | 
			
		||||
{{- end -}}
 | 
			
		||||
 | 
			
		||||
{{- $content := .Text -}}
 | 
			
		||||
{{- $alertType := .AlertType -}}
 | 
			
		||||
{{- $alertTitle := .AlertTitle -}}
 | 
			
		||||
 | 
			
		||||
{{- partial "components/github-style-alert.html" (dict "content" $content "alertType" $alertType "alertTitle" $alertTitle) -}}
 | 
			
		||||
							
								
								
									
										3
									
								
								layouts/_default/_markup/render-blockquote-regular.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								layouts/_default/_markup/render-blockquote-regular.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
<blockquote>
 | 
			
		||||
  {{ .Text }}
 | 
			
		||||
</blockquote>
 | 
			
		||||
							
								
								
									
										42
									
								
								layouts/partials/components/github-style-alert.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								layouts/partials/components/github-style-alert.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,42 @@
 | 
			
		||||
{{- $content := .content -}}
 | 
			
		||||
{{- $alertType := .alertType -}}
 | 
			
		||||
{{- $alertTitle := .alertTitle -}}
 | 
			
		||||
 | 
			
		||||
{{- $icons := dict
 | 
			
		||||
  "note" "information-circle"
 | 
			
		||||
  "tip" "light-bulb"
 | 
			
		||||
  "important" "information-circle"
 | 
			
		||||
  "warning" "exclamation"
 | 
			
		||||
  "caution" "exclamation-circle"
 | 
			
		||||
-}}
 | 
			
		||||
 | 
			
		||||
{{- $icon := index $icons $alertType -}}
 | 
			
		||||
{{- $title := or $alertTitle (or (i18n $alertType) (title $alertType)) -}}
 | 
			
		||||
 | 
			
		||||
{{- $defaultClass := "hx-border-orange-100 hx-bg-orange-50 hx-text-orange-800 dark:hx-border-orange-400/30 dark:hx-bg-orange-400/20 dark:hx-text-orange-300" }}
 | 
			
		||||
 | 
			
		||||
{{- $alertClasses := dict
 | 
			
		||||
  "note" "hx-border-blue-200 hx-bg-blue-100 hx-text-blue-900 dark:hx-border-blue-200/30 dark:hx-bg-blue-900/30 dark:hx-text-blue-200"
 | 
			
		||||
  "tip" "hx-border-green-200 hx-bg-green-100 hx-text-green-900 dark:hx-border-green-200/30 dark:hx-bg-green-900/30 dark:hx-text-green-200"
 | 
			
		||||
  "important" "hx-border-indigo-200 hx-bg-indigo-100 hx-text-indigo-900 dark:hx-border-indigo-200/30 dark:hx-bg-indigo-900/30 dark:hx-text-indigo-200"
 | 
			
		||||
  "warning" "hx-border-amber-200 hx-bg-amber-100 hx-text-amber-900 dark:hx-border-amber-200/30 dark:hx-bg-amber-900/30 dark:hx-text-amber-200"
 | 
			
		||||
  "caution" "hx-border-red-200 hx-bg-red-100 hx-text-red-900 dark:hx-border-red-200/30 dark:hx-bg-red-900/30 dark:hx-text-red-200"
 | 
			
		||||
-}}
 | 
			
		||||
 | 
			
		||||
{{- $class := index $alertClasses $alertType | default $defaultClass -}}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<div class="hx-overflow-x-auto hx-mt-6 hx-flex hx-flex-col hx-rounded-lg hx-border hx-py-4 hx-px-4 contrast-more:hx-border-current contrast-more:dark:hx-border-current {{ $class }}">
 | 
			
		||||
  <p class="hx-flex hx-items-center hx-font-medium">
 | 
			
		||||
    {{- with $icon -}}
 | 
			
		||||
      {{- partial "utils/icon.html" (dict "name" . "attributes" `height=16px class="hx-inline-block hx-align-middle hx-mr-2"`) -}}
 | 
			
		||||
    {{- end -}}
 | 
			
		||||
    {{- $title -}}
 | 
			
		||||
  </p>
 | 
			
		||||
 | 
			
		||||
  <div class="hx-w-full hx-min-w-0 hx-leading-7">
 | 
			
		||||
    <div class="hx-mt-6 hx-leading-7 first:hx-mt-0">
 | 
			
		||||
      {{- $content -}}
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
@@ -15,7 +15,7 @@
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<footer class="hextra-footer hx-bg-gray-100 hx-pb-[env(safe-area-inset-bottom)] dark:hx-bg-neutral-900 print:hx-bg-transparent">
 | 
			
		||||
  {{- if $enableFooterSwitches -}}
 | 
			
		||||
  {{- if and $enableFooterSwitches (or hugo.IsMultilingual $displayThemeToggle) -}}
 | 
			
		||||
    <div class="hx-mx-auto hx-flex hx-gap-2 hx-py-2 hx-px-4 {{ $footerWidth }}">
 | 
			
		||||
      {{- partial "language-switch.html" (dict "context" .) -}}
 | 
			
		||||
      {{- with $displayThemeToggle }}{{ partial "theme-toggle.html" }}{{ end -}}
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  {{ else -}}
 | 
			
		||||
    <meta name="robots" content="noindex, nofollow" />
 | 
			
		||||
  {{ end -}}
 | 
			
		||||
  {{ partialCached "favicons.html" . }}
 | 
			
		||||
  {{ partialCached "favicons.html" . -}}
 | 
			
		||||
  <title>
 | 
			
		||||
    {{- if .IsHome -}}
 | 
			
		||||
      {{ .Site.Title -}}
 | 
			
		||||
@@ -17,17 +17,17 @@
 | 
			
		||||
  </title>
 | 
			
		||||
  <meta name="description" content="{{ partial "utils/page-description.html" . }}" />
 | 
			
		||||
 | 
			
		||||
  {{ with .Params.canonical }}
 | 
			
		||||
  {{- with .Params.canonical -}}
 | 
			
		||||
    <link rel="canonical" href="{{ . }}" itemprop="url" />
 | 
			
		||||
  {{ else }}
 | 
			
		||||
  {{- else -}}
 | 
			
		||||
    <link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
 | 
			
		||||
  {{ end }}
 | 
			
		||||
  {{- end -}}
 | 
			
		||||
 | 
			
		||||
  {{ partial "opengraph.html" . }}
 | 
			
		||||
  {{ template "_internal/schema.html" . -}}
 | 
			
		||||
  {{ template "_internal/twitter_cards.html" . -}}
 | 
			
		||||
  {{- partial "opengraph.html" . -}}
 | 
			
		||||
  {{- template "_internal/schema.html" . -}}
 | 
			
		||||
  {{- template "_internal/twitter_cards.html" . -}}
 | 
			
		||||
 | 
			
		||||
  {{ partialCached "head-css.html" . }}
 | 
			
		||||
  {{- partialCached "head-css.html" . -}}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<!-- Google Analytics -->
 | 
			
		||||
 
 | 
			
		||||
@@ -31,6 +31,8 @@
 | 
			
		||||
    {{- range .Site.Menus.main -}}
 | 
			
		||||
      {{- if eq .Params.type "search" -}}
 | 
			
		||||
        {{- partial "search.html" (dict "params" .Params) -}}
 | 
			
		||||
      {{- else if eq .Params.type "theme-toggle" -}}
 | 
			
		||||
        {{- partial "theme-toggle.html" (dict "navbar" true "hideLabel" (.Params.hideLabel | default true)) -}}
 | 
			
		||||
      {{- else -}}
 | 
			
		||||
        {{- $link := .URL -}}
 | 
			
		||||
        {{- $external := strings.HasPrefix $link "http" -}}
 | 
			
		||||
@@ -42,7 +44,7 @@
 | 
			
		||||
 | 
			
		||||
        {{/* Display icon menu item */}}
 | 
			
		||||
        {{- if .Params.icon -}}
 | 
			
		||||
          {{- $rel := cond (eq .Params.icon "mastodon") "noreferer me" "noreferer" }}
 | 
			
		||||
          {{- $rel := cond (eq .Params.icon "mastodon") "noreferrer me" "noreferrer" }}
 | 
			
		||||
          <a class="hx-p-2 hx-text-current" {{ if $external }}target="_blank" rel="{{ $rel }}"{{ end }} href="{{ $link }}" title="{{ or (T .Identifier) .Name | safeHTML }}">
 | 
			
		||||
            {{- partial "utils/icon.html" (dict "name" .Params.icon "attributes" "height=24") -}}
 | 
			
		||||
            <span class="hx-sr-only">{{ or (T .Identifier) .Name | safeHTML }}</span>
 | 
			
		||||
@@ -53,7 +55,7 @@
 | 
			
		||||
          <a
 | 
			
		||||
            title="{{ or (T .Identifier) .Name | safeHTML }}"
 | 
			
		||||
            href="{{ $link }}"
 | 
			
		||||
            {{ if $external }}target="_blank" rel="noreferer"{{ end }}
 | 
			
		||||
            {{ if $external }}target="_blank" rel="noreferrer"{{ end }}
 | 
			
		||||
            class="hx-text-sm contrast-more:hx-text-gray-700 contrast-more:dark:hx-text-gray-100 hx-relative -hx-ml-2 hx-hidden hx-whitespace-nowrap hx-p-2 md:hx-inline-block {{ $activeClass }}"
 | 
			
		||||
          >
 | 
			
		||||
            <span class="hx-text-center">{{ or (T .Identifier) .Name | safeHTML }}</span>
 | 
			
		||||
 
 | 
			
		||||
@@ -37,9 +37,32 @@
 | 
			
		||||
  {{- $mermaidJS := resources.Get "lib/mermaid/mermaid.min.js" | fingerprint -}}
 | 
			
		||||
  <script defer src="{{ $mermaidJS.RelPermalink }}" integrity="{{ $mermaidJS.Data.Integrity }}"></script>
 | 
			
		||||
  <script>
 | 
			
		||||
    document.addEventListener("DOMContentLoaded", function () {
 | 
			
		||||
    document.addEventListener("DOMContentLoaded", () => {
 | 
			
		||||
      // Store original mermaid code for each diagram
 | 
			
		||||
      document.querySelectorAll(".mermaid").forEach(el => {
 | 
			
		||||
        el.dataset.original = el.innerHTML;
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      const theme = document.documentElement.classList.contains("dark") ? "dark" : "default";
 | 
			
		||||
      mermaid.initialize({ startOnLoad: true, theme: theme });
 | 
			
		||||
 | 
			
		||||
      let timeout;
 | 
			
		||||
      new MutationObserver(() => {
 | 
			
		||||
        clearTimeout(timeout);
 | 
			
		||||
        timeout = setTimeout(() => {
 | 
			
		||||
          const theme = document.documentElement.classList.contains("dark") ? "dark" : "default";
 | 
			
		||||
          document.querySelectorAll(".mermaid").forEach(el => {
 | 
			
		||||
            // Reset to original content, preserving HTML
 | 
			
		||||
            el.innerHTML = el.dataset.original;
 | 
			
		||||
            el.removeAttribute("data-processed");
 | 
			
		||||
          });
 | 
			
		||||
          mermaid.initialize({ startOnLoad: true, theme: theme });
 | 
			
		||||
          mermaid.init();
 | 
			
		||||
        }, 150);
 | 
			
		||||
      }).observe(document.documentElement, {
 | 
			
		||||
        attributes: true,
 | 
			
		||||
        attributeFilter: ["class"]
 | 
			
		||||
      });
 | 
			
		||||
    });
 | 
			
		||||
  </script>
 | 
			
		||||
{{- end -}}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										28
									
								
								layouts/partials/shortcodes/callout.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								layouts/partials/shortcodes/callout.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,28 @@
 | 
			
		||||
{{- $content := .content -}}
 | 
			
		||||
{{- $emoji := .emoji -}}
 | 
			
		||||
{{- $icon := .icon -}}
 | 
			
		||||
 | 
			
		||||
{{- $defaultClass := "hx-border-orange-100 hx-bg-orange-50 hx-text-orange-800 dark:hx-border-orange-400/30 dark:hx-bg-orange-400/20 dark:hx-text-orange-300" -}}
 | 
			
		||||
 | 
			
		||||
{{- $class := .class | default $defaultClass -}}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<div class="hx-overflow-x-auto hx-mt-6 hx-flex hx-rounded-lg hx-border hx-py-2 ltr:hx-pr-4 rtl:hx-pl-4 contrast-more:hx-border-current contrast-more:dark:hx-border-current {{ $class }}">
 | 
			
		||||
  <div class="ltr:hx-pl-3 ltr:hx-pr-2 rtl:hx-pr-3 rtl:hx-pl-2">
 | 
			
		||||
    {{- with $emoji -}}
 | 
			
		||||
      <div class="hx-select-none hx-text-xl" style="font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';">
 | 
			
		||||
        {{- . -}}
 | 
			
		||||
      </div>
 | 
			
		||||
    {{- else -}}
 | 
			
		||||
      {{- with $icon -}}
 | 
			
		||||
        {{ partial "utils/icon.html" (dict "name" . "attributes" `height=1.2em class="hx-inline-block hx-align-middle"`) -}}
 | 
			
		||||
      {{- end -}}
 | 
			
		||||
    {{- end -}}
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
  <div class="hx-w-full hx-min-w-0 hx-leading-7">
 | 
			
		||||
    <div class="hx-mt-6 hx-leading-7 first:hx-mt-0">
 | 
			
		||||
      {{- $content -}}
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
@@ -160,7 +160,7 @@
 | 
			
		||||
      hx-text-gray-500 hover:hx-bg-gray-100 hover:hx-text-gray-900 contrast-more:hx-border contrast-more:hx-border-transparent contrast-more:hx-text-gray-900 contrast-more:hover:hx-border-gray-900 dark:hx-text-neutral-400 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50 contrast-more:dark:hx-text-gray-50 contrast-more:dark:hover:hx-border-gray-50
 | 
			
		||||
    {{- end -}}"
 | 
			
		||||
    href="{{ .link }}"
 | 
			
		||||
    {{ if $external }}target="_blank" rel="noreferer"{{ end }}
 | 
			
		||||
    {{ if $external }}target="_blank" rel="noreferrer"{{ end }}
 | 
			
		||||
  >
 | 
			
		||||
    {{- .title -}}
 | 
			
		||||
    {{- with .context }}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +1,10 @@
 | 
			
		||||
{{- $navbar := .navbar | default false -}}
 | 
			
		||||
{{- $height_px := 12 -}}
 | 
			
		||||
{{- $height_tw := "hx-text-xs" -}}
 | 
			
		||||
{{- if $navbar -}}
 | 
			
		||||
  {{- $height_px = 24 -}}
 | 
			
		||||
  {{- $height_tw = "hx-text-sm" -}}
 | 
			
		||||
{{- end -}}
 | 
			
		||||
{{- $hideLabel := .hideLabel | default false -}}
 | 
			
		||||
 | 
			
		||||
{{- $changeTheme := (T "changeTheme") | default "Change theme" -}}
 | 
			
		||||
@@ -8,14 +15,14 @@
 | 
			
		||||
<button
 | 
			
		||||
  title="{{ $changeTheme }}"
 | 
			
		||||
  data-theme="light"
 | 
			
		||||
  class="theme-toggle hx-group hx-h-7 hx-rounded-md hx-px-2 hx-text-left hx-text-xs hx-font-medium hx-text-gray-600 hx-transition-colors dark:hx-text-gray-400 hover:hx-bg-gray-100 hover:hx-text-gray-900 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50"
 | 
			
		||||
  class="theme-toggle hx-group hx-h-7 hx-rounded-md hx-px-2 hx-text-left {{ $height_tw }} hx-font-medium hx-text-gray-600 hx-transition-colors dark:hx-text-gray-400 hover:hx-bg-gray-100 hover:hx-text-gray-900 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50"
 | 
			
		||||
  type="button"
 | 
			
		||||
  aria-label="{{ $changeTheme }}"
 | 
			
		||||
>
 | 
			
		||||
  <div class="hx-flex hx-items-center hx-gap-2 hx-capitalize">
 | 
			
		||||
    {{- partial "utils/icon.html" (dict "name" "sun" "attributes" "height=12 class=\"group-data-[theme=light]:hx-hidden\"") -}}
 | 
			
		||||
    {{- partial "utils/icon.html" (dict "name" "sun" "attributes" (printf "height=%d class=\"group-data-[theme=light]:hx-hidden\"" $height_px)) -}}
 | 
			
		||||
    {{- if not $hideLabel }}<span class="group-data-[theme=light]:hx-hidden">{{ $light }}</span>{{ end -}}
 | 
			
		||||
    {{- partial "utils/icon.html" (dict "name" "moon" "attributes" "height=12 class=\"group-data-[theme=dark]:hx-hidden\"") -}}
 | 
			
		||||
    {{- partial "utils/icon.html" (dict "name" "moon" "attributes" (printf "height=%d class=\"group-data-[theme=dark]:hx-hidden\"" $height_px)) -}}
 | 
			
		||||
    {{- if not $hideLabel }}<span class="group-data-[theme=dark]:hx-hidden">{{ $dark }}</span>{{ end -}}
 | 
			
		||||
  </div>
 | 
			
		||||
</button>
 | 
			
		||||
 
 | 
			
		||||
@@ -38,7 +38,7 @@
 | 
			
		||||
              {{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
 | 
			
		||||
            {{- end -}}
 | 
			
		||||
          {{- end -}}
 | 
			
		||||
          <a class="hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50" href="{{ $editURL }}" target="_blank" rel="noreferer">{{ $editThisPage }}</a>
 | 
			
		||||
          <a class="hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50" href="{{ $editURL }}" target="_blank" rel="noreferrer">{{ $editThisPage }}</a>
 | 
			
		||||
        {{- end -}}
 | 
			
		||||
        {{/* Scroll To Top */}}
 | 
			
		||||
        <button aria-hidden="true" id="backToTop" onClick="scrollUp();" class="hx-transition-all hx-duration-75 hx-opacity-0 hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50">
 | 
			
		||||
 
 | 
			
		||||
@@ -1,37 +1,19 @@
 | 
			
		||||
{{ $calloutEmojiDict := dict "info" "ℹ️" "warning" "⚠️" "error" "🚫" }}
 | 
			
		||||
{{ $type := .Get "type" | default "default" }}
 | 
			
		||||
{{- $calloutEmojiDict := dict "info" "ℹ️" "warning" "⚠️" "error" "🚫" -}}
 | 
			
		||||
{{- $type := .Get "type" | default "default" -}}
 | 
			
		||||
{{/* If emoji is not set, use the emoji from dict */}}
 | 
			
		||||
{{ $emoji := .Get "emoji" }}
 | 
			
		||||
{{ if eq $emoji "" }}
 | 
			
		||||
  {{ $emoji = index $calloutEmojiDict $type }}
 | 
			
		||||
{{ end }}
 | 
			
		||||
{{- $emoji := .Get "emoji" -}}
 | 
			
		||||
{{- if eq $emoji "" -}}
 | 
			
		||||
  {{- $emoji = index $calloutEmojiDict $type -}}
 | 
			
		||||
{{- end -}}
 | 
			
		||||
{{/* Also allow using "icon" */}}
 | 
			
		||||
{{ $icon := .Get "icon" }}
 | 
			
		||||
{{- $icon := .Get "icon" -}}
 | 
			
		||||
{{- $content := .InnerDeindent | markdownify -}}
 | 
			
		||||
 | 
			
		||||
{{ $defaultClass := "hx-border-orange-100 hx-bg-orange-50 hx-text-orange-800 dark:hx-border-orange-400/30 dark:hx-bg-orange-400/20 dark:hx-text-orange-300" }}
 | 
			
		||||
{{ $infoClass := "hx-border-blue-200 hx-bg-blue-100 hx-text-blue-900 dark:hx-border-blue-200/30 dark:hx-bg-blue-900/30 dark:hx-text-blue-200" }}
 | 
			
		||||
{{ $warningClass := "hx-border-yellow-100 hx-bg-yellow-50 hx-text-yellow-900 dark:hx-border-yellow-200/30 dark:hx-bg-yellow-700/30 dark:hx-text-yellow-200" }}
 | 
			
		||||
{{ $errorClass := "hx-border-red-200 hx-bg-red-100 hx-text-red-900 dark:hx-border-red-200/30 dark:hx-bg-red-900/30 dark:hx-text-red-200" }}
 | 
			
		||||
{{- $defaultClass := "hx-border-orange-100 hx-bg-orange-50 hx-text-orange-800 dark:hx-border-orange-400/30 dark:hx-bg-orange-400/20 dark:hx-text-orange-300" -}}
 | 
			
		||||
{{- $infoClass := "hx-border-blue-200 hx-bg-blue-100 hx-text-blue-900 dark:hx-border-blue-200/30 dark:hx-bg-blue-900/30 dark:hx-text-blue-200" -}}
 | 
			
		||||
{{- $warningClass := "hx-border-yellow-100 hx-bg-yellow-50 hx-text-yellow-900 dark:hx-border-yellow-200/30 dark:hx-bg-yellow-700/30 dark:hx-text-yellow-200" -}}
 | 
			
		||||
{{- $errorClass := "hx-border-red-200 hx-bg-red-100 hx-text-red-900 dark:hx-border-red-200/30 dark:hx-bg-red-900/30 dark:hx-text-red-200" -}}
 | 
			
		||||
 | 
			
		||||
{{ $class := cond (eq $type "info") $infoClass (cond (eq $type "warning") $warningClass (cond (eq $type "error") $errorClass $defaultClass)) }}
 | 
			
		||||
{{- $class := cond (eq $type "info") $infoClass (cond (eq $type "warning") $warningClass (cond (eq $type "error") $errorClass $defaultClass)) -}}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<div class="hx-overflow-x-auto hx-mt-6 hx-flex hx-rounded-lg hx-border hx-py-2 ltr:hx-pr-4 rtl:hx-pl-4 contrast-more:hx-border-current contrast-more:dark:hx-border-current {{ $class }}">
 | 
			
		||||
  <div class="ltr:hx-pl-3 ltr:hx-pr-2 rtl:hx-pr-3 rtl:hx-pl-2">
 | 
			
		||||
    {{- with $emoji -}}
 | 
			
		||||
      <div class="hx-select-none hx-text-xl" style="font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';">
 | 
			
		||||
        {{ . }}
 | 
			
		||||
      </div>
 | 
			
		||||
    {{- else -}}
 | 
			
		||||
      {{- with $icon }}
 | 
			
		||||
        {{ partial "utils/icon.html" (dict "name" . "attributes" `height=1.2em class="hx-inline-block hx-align-middle"`) -}}
 | 
			
		||||
      {{- end -}}
 | 
			
		||||
    {{- end -}}
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
  <div class="hx-w-full hx-min-w-0 hx-leading-7">
 | 
			
		||||
    <div class="hx-mt-6 hx-leading-7 first:hx-mt-0">
 | 
			
		||||
      {{ .InnerDeindent | markdownify }}
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
{{- partial "shortcodes/callout.html" (dict "content" $content "emoji" $emoji "icon" $icon "class" $class) -}}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										10
									
								
								layouts/shortcodes/hextra/hero-section.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								layouts/shortcodes/hextra/hero-section.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
{{- $style := .Get "style" -}}
 | 
			
		||||
{{- $heading := int (strings.TrimPrefix "h" (.Get "heading" | default "h2")) -}}
 | 
			
		||||
{{- $size := cond (ge $heading 4) "xl" (cond (eq $heading 3) "2xl" "4xl") -}}
 | 
			
		||||
 | 
			
		||||
<h{{ $heading }}
 | 
			
		||||
  class="not-prose hx-text-{{ $size }} hx-font-bold hx-leading-none hx-tracking-tighter md:hx-text-3xl hx-py-2 hx-bg-clip-text hx-text-transparent hx-bg-gradient-to-r hx-from-gray-900 hx-to-gray-600 dark:hx-from-gray-100 dark:hx-to-gray-400"
 | 
			
		||||
  {{ with $style }}style="{{ . | safeCSS }}"{{ end }}
 | 
			
		||||
>
 | 
			
		||||
  {{ .Inner | markdownify }}
 | 
			
		||||
</h{{ $heading }}>
 | 
			
		||||
@@ -7,6 +7,6 @@ command = "cd exampleSite && hugo --gc --minify --themesDir ../.. -b ${DEPLOY_PR
 | 
			
		||||
ignore = "false"
 | 
			
		||||
 | 
			
		||||
[build.environment]
 | 
			
		||||
HUGO_VERSION = "0.132.2"
 | 
			
		||||
HUGO_VERSION = "0.138.0"
 | 
			
		||||
GO_VERSION = "1.22.3"
 | 
			
		||||
NODE_VERSION = "22.2.0"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							@@ -523,11 +523,10 @@
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/cross-spawn": {
 | 
			
		||||
      "version": "7.0.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
 | 
			
		||||
      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
 | 
			
		||||
      "version": "7.0.6",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
 | 
			
		||||
      "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
 | 
			
		||||
      "dev": true,
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "path-key": "^3.1.0",
 | 
			
		||||
        "shebang-command": "^2.0.0",
 | 
			
		||||
@@ -1031,9 +1030,9 @@
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/nanoid": {
 | 
			
		||||
      "version": "3.3.7",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
 | 
			
		||||
      "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
 | 
			
		||||
      "version": "3.3.8",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
 | 
			
		||||
      "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
 | 
			
		||||
      "dev": true,
 | 
			
		||||
      "funding": [
 | 
			
		||||
        {
 | 
			
		||||
@@ -1041,7 +1040,6 @@
 | 
			
		||||
          "url": "https://github.com/sponsors/ai"
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "bin": {
 | 
			
		||||
        "nanoid": "bin/nanoid.cjs"
 | 
			
		||||
      },
 | 
			
		||||
 
 | 
			
		||||
@@ -61,8 +61,11 @@ module.exports = {
 | 
			
		||||
      neutral: colors.neutral,
 | 
			
		||||
      red: colors.red,
 | 
			
		||||
      orange: colors.orange,
 | 
			
		||||
      green: colors.green,
 | 
			
		||||
      indigo: colors.indigo,
 | 
			
		||||
      blue: colors.blue,
 | 
			
		||||
      yellow: colors.yellow,
 | 
			
		||||
      amber: colors.amber,
 | 
			
		||||
      primary: {
 | 
			
		||||
        50: makePrimaryColor(97),
 | 
			
		||||
        100: makePrimaryColor(94),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user