-
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.
- Loading branch information
1 parent
9369afe
commit ca40e32
Showing
12 changed files
with
137 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Practice problem (Quiz) structured data | ||
https://developers.google.com/search/docs/appearance/structured-data/practice-problems | ||
|
||
Q&A (QAPage) structured data | ||
https://developers.google.com/search/docs/appearance/structured-data/qapage | ||
|
||
FAQ (FAQPage, Question, Answer) structured data | ||
https://developers.google.com/search/docs/appearance/structured-data/faqpage | ||
|
||
Education Q&A (Quiz, Question, and Answer) structured data | ||
https://developers.google.com/search/docs/appearance/structured-data/education-qa | ||
|
||
Job posting (JobPosting) structured data for Job Search | ||
https://developers.google.com/search/docs/appearance/structured-data/job-posting |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{ define "main" }} | ||
<section> | ||
<div> | ||
<div class="page-title-overlap bg-primary py-5"> | ||
<div class="container py-2 py-lg-4"> | ||
<div class="block-center"> | ||
{{ partial "meta.breadcrumb.html" . }} | ||
<h3 class="text-light pt-1">{{ .Title }}</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container mt-5"> | ||
<div class="mt-5 mt-md-0 text-justify">{{ .Content }}</div> | ||
</div> | ||
</div> | ||
</section> | ||
{{ 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
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,7 +1,19 @@ | ||
<div class="d-flex justify-content-between p-3" aria-label="Post navigation"> | ||
<div class="d-flex justify-content-between p-3 fw-bold" aria-label="Post navigation"> | ||
{{ if .Prev }}<a class="nav-link" href="{{ .Prev.Permalink }}">« {{i18n | ||
"prevpost"}}<span class="d-none"> {{.Prev.Title}}</span></a>{{ end }} | ||
<a class="nav-link" href='{{absLangURL "/posts/"}}'>{{i18n "allposts"}}</a> | ||
{{ if .Next }}<a class="nav-link" href="{{ .Next.Permalink }}">{{i18n "nextpost"}} | ||
»<span class="d-none"> {{.Next.Title}}</span></a>{{ end }} | ||
</div> | ||
</div> | ||
{{/* <div class="d-flex justify-content-between p-3" aria-label="Post navigation"> | ||
{{ with .PrevInSection }} | ||
<a class="nav-link" href="{{ .RelPermalink }}"> | ||
{{i18n "prevpost"}} | ||
«<span>{{.Title}}</span></a>{{ end }} | ||
<a class="nav-link" href='{{absLangURL "/posts/"}}'>{{i18n "allposts"}}</a> | ||
{{ with .NextInSection }} | ||
<a class="nav-link" href="{{ .RelPermalink }}"> | ||
{{i18n "nextpost"}} | ||
<span>{{.Title}}</span>» | ||
</a>{{ end }} | ||
</div> */}} |
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
<figure class="w-100 rounded mb-4"> | ||
<img src="{{ index .Params 0 }}" alt="{{ index .Params 1 }}" class="rounded"/> | ||
<figcaption>{{ index .Params 1 }}</figcaption> | ||
</figure> | ||
<figure class="w-100 rounded mb-4" itemscope itemtype="https://schema.org/ImageObject"> | ||
<img class="rounded" src="{{ index .Params 0 }}" alt="{{ index .Params 1 }}" itemprop="contentUrl" /> | ||
<figcaption class="mt-2" itemprop="name">{{ index .Params 1 }}</figcaption> | ||
<span class="d-none" itemprop="license">CC BY-SA 4.0 Attribution-ShareAlike 4.0 International</span> | ||
<span class="d-none" itemprop="acquireLicensePage">https://creativecommons.org/licenses/by-sa/4.0/</span> | ||
<span class="d-none" itemprop="creator" itemtype="https://schema.org/Person" itemscope> | ||
<meta itemprop="name" content="{{.Site.Params.author.name}}" /> | ||
</span> | ||
</figure> |