aboutsummaryrefslogtreecommitdiff
path: root/src/koszko_org_website/templates/cv.html.jinja
blob: 60c37ae1ac27c3541f233c72967b06921adcf7f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
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 %}