Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Jul 10, 2022
0 parents commit d6e9f9d
Show file tree
Hide file tree
Showing 14 changed files with 472 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/.dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Zola on GitHub Pages

on:
push:
branches:
- master

jobs:
build:
name: Publish site
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/[email protected]
- name: Build and deploy
uses: shalzz/[email protected]
env:
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/public/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/anpu"]
path = themes/anpu
url = https://github.com/zbrox/anpu-zola-theme
26 changes: 26 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
base_url = " https://agourlay.github.io"

title = "Arnaud Gourlay's blog"
description = "Yet another programming blog"

generate_feed = true

compile_sass = true

build_search_index = false

theme = "anpu"

taxonomies = [
{ name = "categories" },
{ name = "tags" },
]

[markdown]
highlight_code = true

[extra]
anpu_menu_links = [
{ url = "$BASE_URL/tags/", name = "Tags" },
{ url = "/pages/about", name = "About" },
]
386 changes: 386 additions & 0 deletions content/blog/2022-07-11-rust-performance-retrospective-part1.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
sort_by = "date"
paginate_by = 10
transparent = true
+++
7 changes: 7 additions & 0 deletions content/pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = "About"
description = "About me page"
+++

- [Github](https://github.com/agourlay)
- [Resume](/agourlay-cv.pdf)
17 changes: 17 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Blog

Source of my blog using [zola](https://www.getzola.org/).

## Theme

Using [anpu](https://github.com/zbrox/anpu-zola-theme) theme.

```bash
git submodule add https://github.com/zbrox/anpu-zola-theme themes/anpu
```

## Deployment

Locally with `zola serve`.

On Github pages with an [action](https://www.getzola.org/documentation/deployment/github-pages/).
Binary file added static/2022-07-11/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/2022-07-11/hprof-graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/2022-07-11/latest-heaptrack-consumed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/agourlay-cv.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions themes/anpu
Submodule anpu added at 8518c1

0 comments on commit d6e9f9d

Please sign in to comment.