diff --git a/curriculum-vitae/index.html b/curriculum-vitae/index.html new file mode 100644 index 0000000..4e582ca --- /dev/null +++ b/curriculum-vitae/index.html @@ -0,0 +1,60 @@ +

Curriculum Vitae Hugo Thunnissen

+ +

Experience

+ + + +

Education

+ + + +

Technical Experience

+ +

Programming Languages

+ + + +

Skills

+ + + +

More About Me

+ + diff --git a/curriculum-vitae/last_checksum.txt b/curriculum-vitae/last_checksum.txt new file mode 100644 index 0000000..e0f8c0d --- /dev/null +++ b/curriculum-vitae/last_checksum.txt @@ -0,0 +1 @@ +2373493584 2516 diff --git a/curriculum-vitae/last_edit_date.txt b/curriculum-vitae/last_edit_date.txt new file mode 100644 index 0000000..9d7a5cb --- /dev/null +++ b/curriculum-vitae/last_edit_date.txt @@ -0,0 +1 @@ +1689945739 diff --git a/curriculum-vitae/publish_date.txt b/curriculum-vitae/publish_date.txt new file mode 100644 index 0000000..c126bb2 --- /dev/null +++ b/curriculum-vitae/publish_date.txt @@ -0,0 +1 @@ +1689945325 diff --git a/generate-blog.bash b/generate-blog.bash index b569795..9fcafcc 100755 --- a/generate-blog.bash +++ b/generate-blog.bash @@ -298,6 +298,12 @@ for project_dir in "$here/projects"/*; do "$title" done +publish-html "$publish_dir" \ + "$here/curriculum-vitae" \ + "$publish_dir/curriculum-vitae" \ + "$(cat "$here/curriculum-vitae/index.html")" \ + 'Curriculum Vitae' + cp -rv "$here/assets" "$publish_dir/assets" || exit $? echo 'SUCCESS!' diff --git a/index/index.html b/index/index.html index e31ac49..948072a 100644 --- a/index/index.html +++ b/index/index.html @@ -9,15 +9,20 @@ enabled!

+

+ Read my My Curriculum Vitae +

+

Other places you can find me at on the web:

+

diff --git a/index/last_checksum.txt b/index/last_checksum.txt index 4174b3e..48372f7 100644 --- a/index/last_checksum.txt +++ b/index/last_checksum.txt @@ -1 +1 @@ -381269847 2090 +993068222 2175 diff --git a/index/last_edit_date.txt b/index/last_edit_date.txt index 0083227..6752eeb 100644 --- a/index/last_edit_date.txt +++ b/index/last_edit_date.txt @@ -1 +1 @@ -1653462513 +1689945557 diff --git a/style.css b/style.css index 308215a..0d4be00 100644 --- a/style.css +++ b/style.css @@ -218,6 +218,14 @@ article > section > section > section > header { padding: 0; } +code:before { + counter-increment: line; + content: counter(line); + display: inline-block; + padding-right: 0.3em; + min-width: 3ch; +} + .code-sample > pre:before { counter-increment: line; content: counter(line);