summaryrefslogtreecommitdiff
path: root/src/koszko_org_website/templates/cv.html.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'src/koszko_org_website/templates/cv.html.jinja')
-rw-r--r--src/koszko_org_website/templates/cv.html.jinja159
1 files changed, 159 insertions, 0 deletions
diff --git a/src/koszko_org_website/templates/cv.html.jinja b/src/koszko_org_website/templates/cv.html.jinja
new file mode 100644
index 0000000..60c37ae
--- /dev/null
+++ b/src/koszko_org_website/templates/cv.html.jinja
@@ -0,0 +1,159 @@
+{#
+SPDX-License-Identifier: CC0-1.0
+
+koszko.org website CV page stub.
+
+Copyright (C) 2021,2022 Wojtek Kosior <koszko@koszko.org>
+#}
+{% extends "__koszko_base.html.jinja" %}
+
+{% block title %} CV {% endblock %}
+
+{% block subheading_text %} CV {% endblock %}
+
+{% set include_not_facebookd = true %}
+
+{% macro gitlink() -%}
+ {%- for project_id in varargs -%}
+ {{ numberlink('https://git.koszko.org/' ~ project_id ~ '/') }}
+ {%- endfor -%}
+{%- endmacro %}
+
+{% macro speaks_list() %}
+ {% call unordered_list() %}
+ {% call list_entry() %}
+ C
+ {%-
+ set project_ids = [
+ 'AGH-engineering-thesis',
+ 'smtps-and-pop3s-console-program',
+ 'xml-backup-restore',
+ 'rpi-MMU-example',
+ 'C-hashtable',
+ ]
+ -%}
+ {{ gitlink(*project_ids) }}
+ {%- endcall %}
+
+ {% call list_entry() %}
+ Python{{ gitlink('0tdns', 'pydrilla') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ JavaScript{{ gitlink('browser-extension') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ sh{{ gitlink('0tdns') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ Verilog{{ gitlink('AGH-engineering-thesis') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ SQL{{ gitlink('xml-backup-restore', 'pydrilla') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ HTML+CSS
+ {%-
+ set project_ids = [
+ 'mothers-day-css-animation',
+ 'birthday-flower-css-animation',
+ 'chrysantemum',
+ 'browser-extension',
+ 'pydrilla',
+ 'hydrilla-website'
+ ]
+ -%}
+ {{ gitlink(*project_ids) }}
+ {%- endcall %}
+
+ {% call list_entry() %}
+ Java
+ {% endcall %}
+
+ {% call list_entry() %}
+ LaTeX{{ gitlink('change-world-sheets') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ Fortran
+ {%-
+ set project_ids = [
+ 'fortran-assignment1',
+ 'fortran-assignment2',
+ 'fortran-assignment3'
+ ]
+ -%}
+ {{ gitlink(*project_ids) }}
+ {%- endcall %}
+
+ {% call list_entry() %}
+ {% block lisp_entry_text %}
+ {% endblock %}
+ {% endcall %}
+
+ {% call list_entry() %}
+ Org mode
+ {% endcall %}
+
+ {% call list_entry() %}
+ {% block assembly_link_text %}
+ {% endblock %}{{ gitlink('rpi-MMU-example') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ C++{{ gitlink('smtps-and-pop3s-console-program') }}
+ {% endcall %}
+
+ {% call list_entry() %}
+ Erlang
+ {% endcall %}
+
+ {% call list_entry() %}
+ Tcl{{ gitlink('AGH-engineering-thesis') }}
+ {% endcall %}
+ {% endcall %}
+{% endmacro %}
+
+{%
+ set make_project_ids = [
+ 'AGH-engineering-thesis',
+ 'smtps-and-pop3s-console-program',
+ 'xml-backup-restore',
+ 'rpi-MMU-example',
+ 'pydrilla'
+ ]
+%}
+
+{% set embeds_project_ids = ['rpi-MMU-example'] %}
+
+{% set networking_project_ids = ['0tdns'] %}
+
+{%
+ set xcc_project_ids = [
+ 'rpi-MMU-example',
+ 'gcc-arm-PKGBUILDs',
+ 'smtps-and-pop3s-console-program',
+ 'xml-backup-restore'
+ ]
+%}
+
+{% macro contact_info() %}
+ {% call descriptions() %}
+ {{ desc_term(_('Tel.:')) }}
+ {{ desc_desc('(+48) 12 350 64 74') }}
+
+ {{ desc_term('Email:') }}
+ {% call desc_desc() -%}
+ {{ link('mailto:koszko@koszko.org', 'koszko@koszko.org') }}
+ {%- endcall %}
+
+ {{ desc_term('PGP') }}
+ {% call desc_desc() -%}
+ {{ link('/static/key.gpg', 'key.gpg') }}
+ {%- endcall %}
+ {% endcall %}
+{% endmacro %}