add project databene, remove trailing slashes, add builtbylene boolean

This commit is contained in:
madrilene 2024-10-22 09:45:39 +02:00
parent 8d8b34af36
commit 4cf0516e2e
2 changed files with 26 additions and 15 deletions

View file

@ -9,7 +9,8 @@
"name": "Lene Saile", "name": "Lene Saile",
"description": "My personal site! Really, this website came before the starter, and I built the starter based on it.", "description": "My personal site! Really, this website came before the starter, and I built the starter based on it.",
"filename": "lenesaile", "filename": "lenesaile",
"link": "https://www.lenesaile.com" "link": "https://www.lenesaile.com",
"builtbylene": true
}, },
{ {
"name": "Old man yelling at tech", "name": "Old man yelling at tech",
@ -57,19 +58,20 @@
"name": "Esther Zecco", "name": "Esther Zecco",
"description": "Official website of Esther Zecco. Singer and songwriter of pop music from Segovia with influences of American folk and country.", "description": "Official website of Esther Zecco. Singer and songwriter of pop music from Segovia with influences of American folk and country.",
"filename": "estherzecco", "filename": "estherzecco",
"link": "https://estherzecco.com" "link": "https://estherzecco.com",
"builtbylene": true
}, },
{ {
"name": "Project MB", "name": "Project MB",
"description": "Personal website of Nicole. Writes about productivity, PKM, team happiness, agile, technology..", "description": "Personal website of Nicole. Writes about productivity, PKM, team happiness, agile, technology..",
"filename": "projectmb", "filename": "projectmb",
"link": "https://www.projectmb.com/" "link": "https://www.projectmb.com"
}, },
{ {
"name": "httpster.io", "name": "httpster.io",
"description": "httpster's personal website. Silly articles, rants, art and everything in between. ", "description": "httpster's personal website. Silly articles, rants, art and everything in between. ",
"filename": "httpsterio", "filename": "httpsterio",
"link": "https://httpster.io/" "link": "https://httpster.io"
}, },
{ {
"name": "ELAN", "name": "ELAN",
@ -81,37 +83,42 @@
"name": "Manu Clavijo", "name": "Manu Clavijo",
"description": "Manu Clavijo is an experienced violinist who also performs his own repertoire of songs as a singer-songwriter", "description": "Manu Clavijo is an experienced violinist who also performs his own repertoire of songs as a singer-songwriter",
"filename": "manuclavijo", "filename": "manuclavijo",
"link": "https://www.manuclavijo.com/" "link": "https://www.manuclavijo.com",
"builtbylene": true
}, },
{ {
"name": "Colegio Marpe Ciudad Jardín", "name": "Colegio Marpe Ciudad Jardín",
"description": "Website for a primary school in Las Palmas.", "description": "Website for a primary school in Las Palmas.",
"filename": "colegio-marpe", "filename": "colegio-marpe",
"link": "https://colegiomarpeciudadjardin.com" "link": "https://colegiomarpeciudadjardin.com",
"builtbylene": true
}, },
{ {
"name": "The Wooden Chips Handyman Service", "name": "The Wooden Chips Handyman Service",
"description": "A a website for local virginia handyman built with Netlify CMS and 11ty", "description": "A a website for local virginia handyman built with Netlify CMS and 11ty",
"filename": "woodenchips", "filename": "woodenchips",
"link": "https://thewoodenchips.com/" "link": "https://thewoodenchips.com"
}, },
{ {
"name": "lene.dev", "name": "lene.dev",
"description": "My developer profile. I occasinally try new CSS features here.", "description": "My developer profile. I occasinally try new CSS features here.",
"filename": "lene-dev", "filename": "lene-dev",
"link": "https://www.lene.dev/" "link": "https://www.lene.dev",
"builtbylene": true
}, },
{ {
"name": "cantautor.es", "name": "cantautor.es",
"description": "cantautor.es is a place where you can listen to excerpts of selected songs from Spanish singer-songwriters.", "description": "cantautor.es is a place where you can listen to excerpts of selected songs from Spanish singer-songwriters.",
"filename": "cantautor-es", "filename": "cantautor-es",
"link": "https://cantautor.es/" "link": "https://cantautor.es",
"builtbylene": true
}, },
{ {
"name": "badwebsites.rip", "name": "badwebsites.rip",
"description": "I colaborate with Berlin-based designer Daniela Grau to develop human centered websites.", "description": "I colaborate with Berlin-based designer Daniela Grau to develop human centered websites.",
"filename": "badwebsites-rip", "filename": "badwebsites-rip",
"link": "https://badwebsites.rip/" "link": "https://badwebsites.rip",
"builtbylene": true
}, },
{ {
"name": "claytonerrington.com", "name": "claytonerrington.com",
@ -132,9 +139,10 @@
"link": "https://chrismcleod.dev" "link": "https://chrismcleod.dev"
}, },
{ {
"name": "embedded-data.de", "name": "data-bene.io",
"description": "Embedded Data GmbH is a company specializing in digital solutions for industrial machine and device manufacturers", "description": "Data-Bene specializes in providing expert PostgreSQL services.",
"filename": "embedded", "filename": "databene",
"link": "https://embedded-data.de/en/" "link": "https://www.data-bene.io",
"builtbylene": true
} }
] ]

View file

@ -42,8 +42,11 @@ widths: [400, 520]
<h3 class="text-step-0" slot="headline">{{ site.name }}</h3> <h3 class="text-step-0" slot="headline">{{ site.name }}</h3>
<p slot="content">{{ site.description }}</p> <p slot="content">{{ site.description }}</p>
<footer slot="footer"> <footer slot="footer" class="repel">
<a class="no-indicator" href="{{ site.link }}">{{ site.link | replace("https://", "") }}</a> <a class="no-indicator" href="{{ site.link }}">{{ site.link | replace("https://", "") }}</a>
{% if site.builtbylene %}
<span class="gradient-text-linear">built by Lene</span>
{% endif %}
</footer> </footer>
</custom-card> </custom-card>
{% endfor %} {% endfor %}