Skip to content

Commit a26c5a8

Browse files
committed
minimal changes
1 parent 1694c5b commit a26c5a8

File tree

10 files changed

+124
-7
lines changed

10 files changed

+124
-7
lines changed

content/now/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ I'm currently focused on building **Qordinate** - a coordination assistant that
1313

1414
### Recent Updates
1515

16-
- **Arattai Integration:** Qordinate now works inside Arattai! Users can download the contact card from [qordinate.ai/vcf](https://qordinate.ai/vcf) and DM it on Arattai to get started.
16+
- **WhatsApp:** Start a chat here → [wa.me/message/KPJBAO7JO5DIK1](https://wa.me/message/KPJBAO7JO5DIK1)
17+
- **Arattai:** Download the contact card → [qordinate.ai/vcf](https://qordinate.ai/vcf)
1718
- **Agent Platform:** We're making autonomous, context-aware agents that fit into the apps people already use, rather than requiring new interfaces.
1819

1920
## The Vision

hugo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ disqusShortname = 'singhcoder'
1212
twitter = 'singhhcoder'
1313
linkedin = 'singhcoder'
1414

15+
[outputs]
16+
home = ["HTML", "RSS", "JSON"]
17+
section = ["HTML", "RSS"]
18+
page = ["HTML"]
19+
20+
[permalinks]
21+
posts = "/posts/:slug/"
22+
23+
[privacy]
24+
[privacy.googleAnalytics]
25+
anonymizeIP = true
26+
respectDoNotTrack = true
27+
28+
[params.seo]
29+
enable_schema = true
30+
author = "Harpinder Jot Singh"
31+
twitter = "@singhhcoder"
32+
1533
[menu]
1634
[[menu.main]]
1735
name = 'About'

layouts/_default/baseof.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
{{ partial "head.html" . }}
5+
{{ partial "seo-schema.html" . }}
6+
</head>
7+
<body>
8+
{{ partial "header.html" . }}
9+
<main class="main-wrapper">
10+
<div class="container">
11+
{{ block "main" . }}{{ end }}
12+
</div>
13+
</main>
14+
{{ partial "footer.html" . }}
15+
</body>
16+
</html>
17+
18+

layouts/_default/list.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{{ define "main" }}
2+
<section class="section">
3+
<h1 class="mb-3">{{ .Title }}</h1>
4+
{{ with .Content }}<div class="mb-3">{{ . }}</div>{{ end }}
5+
6+
<div class="grid grid-2">
7+
{{ range .Paginator.Pages }}
8+
<article class="card">
9+
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
10+
<div class="text-muted mb-1">
11+
<time datetime="{{ .Date }}">{{ .Date.Format "Jan 02, 2006" }}</time>
12+
</div>
13+
<p>{{ if .Description }}{{ .Description }}{{ else }}{{ .Summary }}{{ end }}</p>
14+
</article>
15+
{{ end }}
16+
</div>
17+
18+
{{ partial "pagination.html" . }}
19+
</section>
20+
{{ end }}
21+
22+

layouts/_default/single.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{{ define "main" }}
2+
<article class="section">
3+
<header class="mb-3">
4+
<h1 class="mb-1">{{ .Title }}</h1>
5+
<div class="text-muted">
6+
<time datetime="{{ .Date }}">{{ .Date.Format "Jan 02, 2006" }}</time>
7+
{{ with .Params.author }} • {{ . }}{{ end }}
8+
</div>
9+
</header>
10+
11+
<div class="content">
12+
{{ .Content }}
13+
</div>
14+
15+
{{ with .Params.tags }}
16+
<div class="mt-3 text-muted">Tags: {{ delimit . ", " }}</div>
17+
{{ end }}
18+
</article>
19+
{{ end }}
20+
21+

layouts/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<h1>Harpinder Jot Singh</h1>
66
<p>Building Qordinate — coordination without the back-and-forth.</p>
77
<div class="cta-group">
8-
<a href="https://qordinate.ai/vcf" class="btn btn-primary">Get Qordinate vCard</a>
8+
<a href="https://wa.me/message/KPJBAO7JO5DIK1" class="btn btn-primary" target="_blank">Message on WhatsApp</a>
9+
<a href="https://qordinate.ai/vcf" class="btn btn-secondary" target="_blank">Get Arattai vCard</a>
910
<a href="mailto:harpinderjots@gmail.com" class="btn btn-secondary">Email Me</a>
1011
</div>
1112
</section>
@@ -17,7 +18,7 @@ <h2>What I'm Doing Now</h2>
1718
<h3>Qordinate</h3>
1819
<p>I'm building Qordinate - a coordination assistant that helps people and their agents work together seamlessly, without the endless back-and-forth.</p>
1920
<p>I've spent the past few years thinking about how humans and AI can coordinate better - not just communicate. With Qordinate, we're making that real by bringing autonomous, context-aware agents into the apps people already use.</p>
20-
<p><strong>Latest:</strong> Qordinate now works inside Arattai! <a href="https://qordinate.ai/vcf">Download the contact card</a> and DM it on Arattai to get started.</p>
21+
<p><strong>Latest:</strong> Qordinate now works on <a href="https://wa.me/message/KPJBAO7JO5DIK1" target="_blank">WhatsApp</a> and inside Arattai (<a href="https://qordinate.ai/vcf" target="_blank">download vCard</a>).</p>
2122
</div>
2223
</section>
2324

layouts/partials/footer.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<footer class="footer">
44
<div class="container">
55
<div class="footer-row">
6+
<a class="footer-item" href="https://wa.me/message/KPJBAO7JO5DIK1" target="_blank">WhatsApp</a>
7+
<a class="footer-item" href="https://qordinate.ai/vcf" target="_blank">Arattai vCard</a>
68
<a class="footer-item" href="mailto:harpinderjots@gmail.com">Email</a>
79
<a class="footer-item" href="https://x.com/singhhcoder" target="_blank">Twitter</a>
810
<a class="footer-item" href="https://www.linkedin.com/in/singhcoder/" target="_blank">LinkedIn</a>

layouts/partials/head.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,6 @@
8585
</script>
8686
{{ end }}
8787

88-
<link rel="stylesheet" href="{{ "lib/icofont/icofont.min.css" | relURL }}" />
89-
<link rel="stylesheet" href="{{ "css/syntax.css" | relURL }}" />
90-
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}" />
9188
<link rel="stylesheet" href="{{ "css/site.css" | relURL }}" />
9289
<link rel="shortcut icon" href="{{ "images/favicon.ico" | relURL }}" type="image/x-icon" />
9390
{{ template "_internal/google_analytics.html" . }}

layouts/partials/home-projects.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ <h3>{{ .name }}</h3>
1414
{{ end }}
1515
</div>
1616
{{ end }}
17-

layouts/partials/seo-schema.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{{- $site := .Site -}}
2+
{{- $isHome := .IsHome -}}
3+
{{- $title := cond $isHome $site.Title .Title -}}
4+
{{- $desc := "" -}}
5+
{{- if $isHome -}}
6+
{{- with $site.Params.description -}}{{- $desc = . -}}{{- end -}}
7+
{{- else -}}
8+
{{- if .Description -}}{{- $desc = .Description -}}{{- else -}}{{- $desc = .Summary -}}{{- end -}}
9+
{{- end -}}
10+
{{- $url := .Permalink -}}
11+
12+
<script type="application/ld+json">
13+
{
14+
"@context": "https://schema.org",
15+
"@type": {{ if $isHome }}"Person"{{ else }}"BlogPosting"{{ end }},
16+
{{ if $isHome }}
17+
"name": {{ $site.Title | jsonify }},
18+
"url": {{ $url | jsonify }},
19+
"description": {{ $desc | jsonify }},
20+
"sameAs": [
21+
{{ with $site.Social.twitter }}{{ print "https://x.com/" . | jsonify }}{{ end }}{{ if and $site.Social.twitter $site.Social.linkedin }},{{ end }}
22+
{{ with $site.Social.linkedin }}{{ print "https://www.linkedin.com/in/" . | jsonify }}{{ end }}
23+
]
24+
{{ else }}
25+
"headline": {{ $title | jsonify }},
26+
"description": {{ $desc | jsonify }},
27+
"url": {{ $url | jsonify }},
28+
"datePublished": {{ .PublishDate | jsonify }},
29+
"dateModified": {{ .Lastmod | jsonify }},
30+
"author": {
31+
"@type": "Person",
32+
"name": {{ $site.Title | jsonify }}
33+
}
34+
{{ end }}
35+
}
36+
</script>
37+
38+

0 commit comments

Comments
 (0)