Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions assets/sass/_custom.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Custom styles for blog.ogenki.io

// Bluesky icon color
.bluesky
svg
fill: #0085ff
4 changes: 4 additions & 0 deletions config/_default/markup.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[tableOfContents]
startLevel = 2
endLevel = 2

[goldmark]
[goldmark.renderer]
hardWraps = false
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

553 changes: 553 additions & 0 deletions content/fr/post/series/agentic_ai/ai-coding-agent/index.md

Large diffs are not rendered by default.

1,927 changes: 1,927 additions & 0 deletions content/fr/post/series/agentic_ai/ai-coding-agent/index.md.backup-v1

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
390 changes: 390 additions & 0 deletions content/fr/post/series/agentic_ai/ai-coding-tips/index.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions layouts/partials/share.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{{- $s := T "share_on" }}
<div class="post_share">
{{ $s }}:
<a href="https://bsky.app/intent/compose?text={{ .Title }}%20{{ .Permalink }}" class="bluesky" title="{{ $s }} Bluesky" target="_blank" rel="nofollow">
{{ partial "sprite" (dict "icon" "bluesky") }}
</a>
<a href="https://www.facebook.com/sharer.php?u={{ .Permalink }}&t={{ .Title }}" class="facebook" title="{{ $s }} Facebook" target="_blank" rel="nofollow">
{{ partial "sprite" (dict "icon" "facebook") }}
</a>
<a href="#linkedinshare" id = "linkedinshare" class="linkedin" title="{{ $s }} LinkedIn" rel="nofollow">
{{ partial "sprite" (dict "icon" "linkedin") }}
</a>
<a href="{{ .Permalink }}" title="Copy Link" class="link link_yank">
{{ partial "sprite" (dict "icon" "copy") }}
</a>
</div>
35 changes: 35 additions & 0 deletions layouts/shortcodes/img.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{{- $src := .Get "src" -}}
{{- $alt := .Get "alt" | default "" -}}
{{- $width := .Get "width" -}}
{{- $cap := .Get "caption" -}}

{{- /* Get the image resource for proper figure/picture structure */ -}}
{{- $image := "" -}}
{{- if .Page.Resources -}}
{{- $image = .Page.Resources.GetMatch $src -}}
{{- end -}}

<figure style="text-align: center;">
<picture>
<img
loading="lazy"
decoding="async"
alt="{{ $alt }}"
{{- with $image }}
class="image_figure image_internal image_processed"
width="{{ .Width }}"
height="{{ .Height }}"
src="{{ .RelPermalink | absURL }}"
{{- else }}
class="image_figure image_internal image_unprocessed"
src="{{ $src | absURL }}"
{{- end }}
{{- with $width }}
style="max-width: {{ . }}px; display: block; margin: 0 auto;"
{{- end }}
/>
</picture>
{{- with $cap }}
<figcaption>{{ . | markdownify }}</figcaption>
{{- end }}
</figure>