aboutsummaryrefslogtreecommitdiff
path: root/src/koszko_org_website/templates/en/koszko.html.jinja
blob: 905e52975062624ba4967477a8e49c747ccc8cf2 (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
{#
SPDX-License-Identifier: CC0-1.0

koszko.org website personal page (english).

Copyright (C) 2021,2022 Wojtek Kosior <koszko@koszko.org>
#}
{% extends "koszko.html.jinja" %}

{% block title %} Wojtek {% endblock %}

{% block subheading_text %} personal site {% endblock %}

{% set include_not_facebookd = true %}

{% block content %}
  {% call section('contact') %}
    {{ header(2, 'Contact') }}

    {% 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 %}
    {% endcall %}
  {% endcall %}

  {% call section('pubkeys') %}
    {{ header(2, 'Public keys') }}

    {% call unordered_list() %}
      {% call list_entry() %}
        {{ link('/static/key.gpg', 'PGP') }}

        {% call unordered_list() %}
          {% call list_entry() %}
            {% call link('/static/key.gpg.sig') -%}
              PGP key signature made with signify key
            {%- endcall %}
          {% endcall %}
        {% endcall %}
      {% endcall %}

      {% call list_entry() %}
        {{ link('/static/key.pub', 'signify') }}

        {% call unordered_list() %}
          {% call list_entry() %}
            {% call link('/static/key.pub.asc') -%}
	      signify key signature made with PGP key
            {%- endcall %}
          {% endcall %}
        {% endcall %}
      {% endcall %}
    {% endcall %}
  {% endcall %}

  {% call section('portal') %}
    {{ header(2, 'Portal') }}

    {% call para() %}
      This portal of mine is online since april 2021. Sites comprising it are
      listed below.
    {% endcall %}

    {% call descriptions() %}
      {% call desc_term() -%}
        {{ link(same_lang_url('koszko.html'), 'koszko.org/koszko.html') }}
      {%- endcall %}
      —
      {{ desc_desc('my personal website (you\'re viewing it)') }}

      {% call desc_term() -%}
        {{ link('https://pray.koszko.org', 'pray.koszko.org') }}
      {%- endcall %}
      —
      {{ desc_desc('prayer sheets website') }}

      {% call desc_term() -%}
        {{ link('https://sheets.koszko.org', 'sheets.koszko.org') }}
      {%- endcall %}
      —
      {{ desc_desc('world changing sheets website') }}

      {% call desc_term() -%}
        {{ link('https://haketilo.koszko.org', 'haketilo.koszko.org') }}
      {%- endcall %}
      —
      {{ desc_desc('Haketilo proxy website') }}

      {% call desc_term() -%}
        {{ link('https://git.koszko.org', 'git.koszko.org') }}
      {%- endcall %}
      —
      {{ desc_desc('my repositories') }}
    {% endcall %}
  {% endcall %}

  {% call section('request') %}
    {{ header(2, 'Personal message to the world') }}

    {% call para() %}
      Since 2023-04-20 I am praying Our Lady of Pompeii Novena for the digital
      freedom in my country, Poland.
      Everyone is invited to join and start praying for other countries.
    {% endcall %}

    {% call para() %}
      Why? The solely material efforts of the Free Software Movement so far gave
      little effect — the bulk of today's society instead of using ethical
      technologies ({{ link('https://joinpeertube.org/', 'PeerTube') }},
      {{ link('https://joinmastodon.org/', 'Mastodon') }},
      {{ link('https://trisquel.info/', 'GNU+Linux') }}) drowns in centralized
      platforms like Facebook and YouTube and in proprietary software like
      Windows.
      As we can see, volunteer work and advocacy done by many have proved
      insufficient.
      I now want to take example from history where — for example — simple "Hail
      Mary"'s of the rosary saved Austria from communist rule in 1955.
    {% endcall %}

    {% call para() %}
      Earlier on this place used to be displayed my double request — to software
      freedom enthusiast and to all Christians so that they seriously consider
      what the other ones have to say.
      That request was also a bit of a brickbat and I am happy to have had
      changed it for something better and more constructive.
      If you nevertheless want to, you can still find the old text in the
      {{
        link(
          'https://web.archive.org/web/20220625043220/https://koszko.org/en/koszko.html#request',
          'Wayback Machine'
        )
      }}.
    {% endcall %}
  {% endcall %}

  {% call section('posts') %}
    {{ header(2, 'Posts') }}

    {{ posts() }}
  {% endcall %}
{% endblock %}