-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #275 from seasalt-ai/fix-card-link-color
Fix card link color
- Loading branch information
Showing
20 changed files
with
227 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ menu: | |
parent: "stt" | ||
weight: 102 | ||
toc: true | ||
aliases: | ||
- /seavoice/ | ||
--- | ||
|
||
## Customization Panel | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ date: 2020-10-06T08:48:23+00:00 | |
lastmod: 2020-10-06T08:48:23+00:00 | ||
draft: false | ||
images: [] | ||
url: "/seax/index" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ lastmod: 2024-02-12T08:48:57+00:00 | |
draft: false | ||
images: [] | ||
toc: true | ||
url: "/zh/seachat/index" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ images: [] | |
menu: | ||
seax: | ||
parent: "tts" | ||
aliases: | ||
- /zh/seavoice/ | ||
weight: 102 | ||
toc: true | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ images: [] | |
menu: | ||
demo_videos: | ||
parent: "demo_videos_zh" | ||
aliases: | ||
- /zh/seax/ | ||
weight: 120 | ||
toc: true | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,73 @@ | ||
{{ define "main" }} | ||
<div class="row justify-content-center"> | ||
<div class="col-md-12 col-lg-10 col-xl-8"> | ||
<article> | ||
<h1 class="text-center">{{ if eq .CurrentSection .FirstSection }}{{ .Section | humanize }}{{ else }}{{ .Title }}{{ end }}</h1> | ||
<div class="text-center">{{ .Content }}</div> | ||
<div class="card-list"> | ||
{{ $currentSection := .CurrentSection }} | ||
{{ range where .Site.RegularPages.ByTitle "Section" .Section }} | ||
{{ if in (.RelPermalink | string) $currentSection.RelPermalink }} | ||
<div class="card my-3"> | ||
<div class="card-body"> | ||
<a class="stretched-link" href="{{ .RelPermalink }}">{{ .Params.title | title }} →</a> | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ end }} | ||
<!--<div class="row justify-content-center">--> | ||
<!-- <div class="col-md-12 col-lg-10 col-xl-8">--> | ||
<!-- <article>--> | ||
<!-- <h1 class="text-center">{{ if eq .CurrentSection .FirstSection }}{{ .Section | humanize }}{{ else }}{{ .Title }}{{ end }}</h1>--> | ||
<!-- <div class="text-center">{{ .Content }}</div>--> | ||
<!-- <div class="card-list">--> | ||
<!-- {{ $currentSection := .CurrentSection }}--> | ||
<!-- {{ range where .Site.RegularPages.ByTitle "Section" .Section }}--> | ||
<!-- {{ if in (.RelPermalink | string) $currentSection.RelPermalink }}--> | ||
<!-- <div class="card my-3">--> | ||
<!-- <div class="card-body">--> | ||
<!-- <a class="stretched-link" href="{{ .RelPermalink }}">{{ .Params.title | title }} →</a>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
<!-- {{ end }}--> | ||
<!-- {{ end }}--> | ||
<!-- </div>--> | ||
<!-- </article>--> | ||
<!-- </div>--> | ||
<!--</div>--> | ||
<div class="row flex-xl-nowrap"> | ||
<div class="col-lg-5 col-xl-4 docs-sidebar d-none d-lg-block"> | ||
<nav {{ if eq .Site.Params.menu.section.collapsibleSidebar false }}id="sidebar-default" {{ end }}class="docs-links" aria-label="Main navigation"> | ||
{{ partial "sidebar/docs-menu.html" . }} | ||
</nav> | ||
</div> | ||
{{ if ne .Params.toc false -}} | ||
<nav class="docs-toc d-none d-xl-block col-xl-3" aria-label="Secondary navigation"> | ||
{{ partial "sidebar/docs-toc.html" . }} | ||
</nav> | ||
{{ end -}} | ||
{{ if .Params.toc -}} | ||
<main class="docs-content col-lg-11 col-xl{{ if eq .Site.Params.options.fullWidth false }}-9{{ end }}"> | ||
{{ else -}} | ||
<main class="docs-content col-lg-11 col-xl-9 mx-xl-auto"> | ||
{{ end -}} | ||
{{ if .Site.Params.options.breadCrumb -}} | ||
<!-- https://discourse.gohugo.io/t/breadcrumb-navigation-for-highly-nested-content/27359/6 --> | ||
<nav aria-label="breadcrumb"> | ||
<ol class="breadcrumb"> | ||
{{ partial "main/breadcrumb" . -}} | ||
<li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li> | ||
</ol> | ||
</nav> | ||
{{ end }} | ||
<h1>{{ .Title }}</h1> | ||
<p class="lead">{{ .Params.lead | safeHTML }}</p> | ||
{{ if ne .Params.toc false -}} | ||
<nav class="d-xl-none" aria-label="Quaternary navigation"> | ||
{{ partial "sidebar/docs-toc.html" . }} | ||
</nav> | ||
{{ end -}} | ||
{{ .Content }} | ||
<div class="page-footer-meta d-flex flex-column flex-md-row justify-content-between"> | ||
{{ if .Site.Params.lastMod -}} | ||
{{ partial "main/last-modified.html" . }} | ||
{{ end -}} | ||
{{ if .Site.Params.editPage -}} | ||
{{ partial "main/edit-page.html" . }} | ||
{{ end -}} | ||
</div> | ||
</article> | ||
</div> | ||
{{ partial "main/docs-navigation.html" . }} | ||
<!-- | ||
{{ if not .Site.Params.options.collapsibleSidebar -}} | ||
{{ partial "main/docs-navigation.html" . }} | ||
{{ else -}} | ||
<div class="my-n3"></div> | ||
{{ end -}} | ||
--> | ||
</main> | ||
</div> | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,73 @@ | ||
{{ define "main" }} | ||
<div class="row justify-content-center"> | ||
<div class="col-md-12 col-lg-10 col-xl-8"> | ||
<article> | ||
<h1 class="text-center">{{ if eq .CurrentSection .FirstSection }}{{ .Section | humanize }}{{ else }}{{ .Title }}{{ end }}</h1> | ||
<div class="text-center">{{ .Content }}</div> | ||
<div class="card-list"> | ||
{{ $currentSection := .CurrentSection }} | ||
{{ range where .Site.RegularPages.ByTitle "Section" .Section }} | ||
{{ if in (.RelPermalink | string) $currentSection.RelPermalink }} | ||
<div class="card my-3"> | ||
<div class="card-body"> | ||
<a class="stretched-link" href="{{ .RelPermalink }}">{{ .Params.title | title }} →</a> | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ end }} | ||
<!--<div class="row justify-content-center">--> | ||
<!-- <div class="col-md-12 col-lg-10 col-xl-8">--> | ||
<!-- <article>--> | ||
<!-- <h1 class="text-center">{{ if eq .CurrentSection .FirstSection }}{{ .Section | humanize }}{{ else }}{{ .Title }}{{ end }}</h1>--> | ||
<!-- <div class="text-center">{{ .Content }}</div>--> | ||
<!-- <div class="card-list">--> | ||
<!-- {{ $currentSection := .CurrentSection }}--> | ||
<!-- {{ range where .Site.RegularPages.ByTitle "Section" .Section }}--> | ||
<!-- {{ if in (.RelPermalink | string) $currentSection.RelPermalink }}--> | ||
<!-- <div class="card my-3">--> | ||
<!-- <div class="card-body">--> | ||
<!-- <a class="stretched-link" href="{{ .RelPermalink }}">{{ .Params.title | title }} →</a>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
<!-- {{ end }}--> | ||
<!-- {{ end }}--> | ||
<!-- </div>--> | ||
<!-- </article>--> | ||
<!-- </div>--> | ||
<!--</div>--> | ||
<div class="row flex-xl-nowrap"> | ||
<div class="col-lg-5 col-xl-4 docs-sidebar d-none d-lg-block"> | ||
<nav {{ if eq .Site.Params.menu.section.collapsibleSidebar false }}id="sidebar-default" {{ end }}class="docs-links" aria-label="Main navigation"> | ||
{{ partial "sidebar/docs-menu.html" . }} | ||
</nav> | ||
</div> | ||
{{ if ne .Params.toc false -}} | ||
<nav class="docs-toc d-none d-xl-block col-xl-3" aria-label="Secondary navigation"> | ||
{{ partial "sidebar/docs-toc.html" . }} | ||
</nav> | ||
{{ end -}} | ||
{{ if .Params.toc -}} | ||
<main class="docs-content col-lg-11 col-xl{{ if eq .Site.Params.options.fullWidth false }}-9{{ end }}"> | ||
{{ else -}} | ||
<main class="docs-content col-lg-11 col-xl-9 mx-xl-auto"> | ||
{{ end -}} | ||
{{ if .Site.Params.options.breadCrumb -}} | ||
<!-- https://discourse.gohugo.io/t/breadcrumb-navigation-for-highly-nested-content/27359/6 --> | ||
<nav aria-label="breadcrumb"> | ||
<ol class="breadcrumb"> | ||
{{ partial "main/breadcrumb" . -}} | ||
<li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li> | ||
</ol> | ||
</nav> | ||
{{ end }} | ||
<h1>{{ .Title }}</h1> | ||
<p class="lead">{{ .Params.lead | safeHTML }}</p> | ||
{{ if ne .Params.toc false -}} | ||
<nav class="d-xl-none" aria-label="Quaternary navigation"> | ||
{{ partial "sidebar/docs-toc.html" . }} | ||
</nav> | ||
{{ end -}} | ||
{{ .Content }} | ||
<div class="page-footer-meta d-flex flex-column flex-md-row justify-content-between"> | ||
{{ if .Site.Params.lastMod -}} | ||
{{ partial "main/last-modified.html" . }} | ||
{{ end -}} | ||
{{ if .Site.Params.editPage -}} | ||
{{ partial "main/edit-page.html" . }} | ||
{{ end -}} | ||
</div> | ||
</article> | ||
</div> | ||
{{ partial "main/docs-navigation.html" . }} | ||
<!-- | ||
{{ if not .Site.Params.options.collapsibleSidebar -}} | ||
{{ partial "main/docs-navigation.html" . }} | ||
{{ else -}} | ||
<div class="my-n3"></div> | ||
{{ end -}} | ||
--> | ||
</main> | ||
</div> | ||
{{ end }} |
Oops, something went wrong.