Compare commits
No commits in common. "cd911f24b13835368438cec0dbe9600c75e67107" and "a8f4ecfdda2d72f7c302331556a6e75223764457" have entirely different histories.
cd911f24b1
...
a8f4ecfdda
18
README.md
18
README.md
|
@ -152,18 +152,6 @@ links and PGP key file links with the PGP fingerprint as a toolip:
|
||||||
icon = "fa fa-key"
|
icon = "fa fa-key"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configuring Webmentions
|
|
||||||
|
|
||||||
[Webmention](https://www.w3.org/TR/webmention/) and/or
|
|
||||||
[Pingback](http://www.hixie.ch/specs/pingback/pingback) support can easily be
|
|
||||||
configured by including the endpoint URL:
|
|
||||||
|
|
||||||
```toml
|
|
||||||
[params]
|
|
||||||
Webmention = "https://example.org/webmention"
|
|
||||||
Pingback = "https://example.org/pingpack"
|
|
||||||
```
|
|
||||||
|
|
||||||
## Theme Organization
|
## Theme Organization
|
||||||
|
|
||||||
### Semantic Content Organization
|
### Semantic Content Organization
|
||||||
|
@ -308,12 +296,6 @@ partial.
|
||||||
- [A Look Into Proper HTML5 Semantics](https://www.hongkiat.com/blog/html-5-semantics/amp/)
|
- [A Look Into Proper HTML5 Semantics](https://www.hongkiat.com/blog/html-5-semantics/amp/)
|
||||||
- [HTML5 Semantic Tags: What Are They & How To Use Them! - SEMrush](https://www.semrush.com/blog/semantic-html5-guide/)
|
- [HTML5 Semantic Tags: What Are They & How To Use Them! - SEMrush](https://www.semrush.com/blog/semantic-html5-guide/)
|
||||||
|
|
||||||
### Responsive Design / CSS
|
|
||||||
|
|
||||||
- [Realizing common layouts using CSS Grid Layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout)
|
|
||||||
- [Create a responsive layout with CSS Grid](https://www.creativebloq.com/how-to/create-a-responsive-layout-with-css-grid)
|
|
||||||
- [Make the Perfect Responsive Grid with CSS](https://coder-coder.com/make-responsive-grid-css/)
|
|
||||||
|
|
||||||
## Acknowledgements
|
## Acknowledgements
|
||||||
|
|
||||||
- [Indigo Theme](https://github.com/AngeloStavrow/indigo)
|
- [Indigo Theme](https://github.com/AngeloStavrow/indigo)
|
||||||
|
|
|
@ -13,8 +13,6 @@ paginate = 5
|
||||||
builtWith = "Built with [Hugo](https://gohugo.io/)"
|
builtWith = "Built with [Hugo](https://gohugo.io/)"
|
||||||
homepageSectionTitle = "What's New"
|
homepageSectionTitle = "What's New"
|
||||||
mainSections = [ "posts" ]
|
mainSections = [ "posts" ]
|
||||||
Webmention = "https://example.org/webmention"
|
|
||||||
Pingback = "https://example.org/pingpack"
|
|
||||||
|
|
||||||
# Configuration Parameters for IndieWeb h-card
|
# Configuration Parameters for IndieWeb h-card
|
||||||
[params.Card]
|
[params.Card]
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<!-- Rel=Me Identity Links -->
|
|
||||||
{{- range .Site.Params.Identity -}}
|
{{- range .Site.Params.Identity -}}
|
||||||
{{- $relMe := cond .authn "me authn" "me" -}}
|
{{- $relMe := cond .authn "me authn" "me" -}}
|
||||||
{{- if (eq .type "Email") }}
|
{{- if (eq .type "Email") }}
|
||||||
|
@ -16,10 +15,3 @@
|
||||||
<link rel="{{ $relPgp }}" href="{{ .value }}">
|
<link rel="{{ $relPgp }}" href="{{ .value }}">
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
<!-- Webmention Links -->
|
|
||||||
{{- with .Site.Params.Webmention }}
|
|
||||||
<link rel="webmention" href="{{ . }}">
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Site.Params.Pingback }}
|
|
||||||
<link rel="pingback" href="{{ . }}">
|
|
||||||
{{- end }}
|
|
Loading…
Reference in New Issue