42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
extends layout
|
|
|
|
mixin foss_contribution($item)
|
|
p
|
|
a(href="{$item['url-repo']}") !{$item['repo']}
|
|
| —
|
|
a(href="{$item['url-item']}") #!{$item['id']}
|
|
br
|
|
| !{$item['title']}
|
|
|
|
block content
|
|
header
|
|
p
|
|
| Back to:
|
|
a(href="/") yarmo.eu
|
|
h1
|
|
| FOSS
|
|
|
|
h2 >> VCS accounts
|
|
|
|
.wrapper-table
|
|
table
|
|
tbody
|
|
tr
|
|
td Codeberg
|
|
td
|
|
a(href="https://codeberg.org/yarmo" rel="me") @yarmo
|
|
tr
|
|
td GitLab
|
|
td
|
|
a(href="https://gitlab.com/yarmo" rel="me") @yarmo
|
|
tr
|
|
td Github
|
|
td
|
|
a(href="https://github.com/YarmoM" rel="me") @YarmoM
|
|
|
|
h2 >> Contributions
|
|
|
|
each $item in $foss
|
|
+foss_contribution($item)
|
|
|