Compare commits
11 Commits
develop
...
7c47e893c5
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c47e893c5 | |||
| 5c46462953 | |||
| c49b308f20 | |||
| 0dcb6be061 | |||
| 60af7d8a0e | |||
| 4522ce9da7 | |||
| cbb3a9721c | |||
| bd1853ff1f | |||
| 612616e4ec | |||
| d60cbe24d2 | |||
| 1196ab20dd |
4
main.go
4
main.go
@ -404,6 +404,10 @@ func (s *Server) setupRoutes() {
|
|||||||
fs := http.FileServer(http.Dir("static/"))
|
fs := http.FileServer(http.Dir("static/"))
|
||||||
http.Handle("/static/", http.StripPrefix("/static/", cacheControlMiddleware(fs)))
|
http.Handle("/static/", http.StripPrefix("/static/", cacheControlMiddleware(fs)))
|
||||||
|
|
||||||
|
// Promo files under /promo served from static/promo/
|
||||||
|
promoFS := http.FileServer(http.Dir("static/promo/"))
|
||||||
|
http.Handle("/promo/", http.StripPrefix("/promo/", cacheControlMiddleware(promoFS)))
|
||||||
|
|
||||||
// Page routes
|
// Page routes
|
||||||
http.HandleFunc("/", s.homeHandler)
|
http.HandleFunc("/", s.homeHandler)
|
||||||
http.HandleFunc("/contact", s.contactHandler)
|
http.HandleFunc("/contact", s.contactHandler)
|
||||||
|
|||||||
29
qemuselect.sh
Executable file
29
qemuselect.sh
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ISO_DIR="$HOME/Documents/HogelandLinux/LinuxDistros"
|
||||||
|
ISO_LIST=("$ISO_DIR"/*.iso)
|
||||||
|
|
||||||
|
# Bail out if no ISOs
|
||||||
|
if [ ${#ISO_LIST[@]} -eq 0 ]; then
|
||||||
|
echo "No ISO files found in $ISO_DIR"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
PS3="Select a distro to boot with QEMU (or Ctrl+C to quit): "
|
||||||
|
|
||||||
|
select iso in "${ISO_LIST[@]}"; do
|
||||||
|
if [ -n "$iso" ]; then
|
||||||
|
echo "Launching $iso ..."
|
||||||
|
qemu-system-x86_64 \
|
||||||
|
-m 2048 \
|
||||||
|
-cdrom "$iso" \
|
||||||
|
-boot d \
|
||||||
|
-enable-kvm \
|
||||||
|
-cpu host \
|
||||||
|
-smp 2
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "Invalid choice."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
BIN
static/images/qr.png
Normal file
BIN
static/images/qr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 384 B |
BIN
static/images/qr.svg
Normal file
BIN
static/images/qr.svg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 384 B |
BIN
static/promo/flyer.png
Normal file
BIN
static/promo/flyer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 MiB |
BIN
static/promo/flyer.psd
Normal file
BIN
static/promo/flyer.psd
Normal file
Binary file not shown.
@ -52,6 +52,75 @@
|
|||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Contactpagina voor Linux-migratieservice in Het Hogeland.",
|
||||||
|
"url": "https://{{.Domain}}/contact",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" },
|
||||||
|
{ "@type": "Place", "name": "Groningen" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -38,6 +38,74 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Diensten en tarieven: Linux-installaties, advies, datamigratie en ondersteuning.",
|
||||||
|
"url": "https://{{.Domain}}/diensten",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
<h3>{{.CompanyName}}</h3>
|
<h3>{{.CompanyName}}</h3>
|
||||||
<p>Specialist in Linux-migratie en duurzaam computergebruik.</p>
|
<p>Specialist in Linux-migratie en duurzaam computergebruik.</p>
|
||||||
<p><strong>📍 Gevestigd in Eenrum</strong></p>
|
<p><strong>📍 Gevestigd in Eenrum</strong></p>
|
||||||
<p><em>Werkzaam in heel gemeente Het Hogeland</em></p>
|
<p><em>Werkzaam in gemeente Het Hogeland en de stad Groningen</em></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-section">
|
<div class="footer-section">
|
||||||
<h3>Contact</h3>
|
<h3>Contact</h3>
|
||||||
@ -18,8 +18,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="footer-section">
|
<div class="footer-section">
|
||||||
<h3>Gemeenschap</h3>
|
<h3>Gemeenschap</h3>
|
||||||
<p>Lid van <a href="https://nllgg.nl" target="_blank">Nederlandse Linux Gebruikers Groep</a> (NLLGG.nl)</p>
|
<p>Lid van de <a href="https://nllgg.nl" target="_blank">Nederlandse Linux Gebruikers Groep</a></p>
|
||||||
<p>Actief bij <a href="https://buurtlinux.nl" target="_blank">Buurtlinux.nl</a> initiatief</p>
|
<p>Actief bij het <a href="https://buurtlinux.nl" target="_blank">Buurtlinux.nl</a> initiatief</p>
|
||||||
|
<p>Vrijwilliger bij <a href="https://laptoprevive.nl" target="_blank">Laptoprevive.nl</a></p>
|
||||||
<p>Ik ondersteun de <a href="https://endof10.org" target="_blank">End-of-10</a>-beweging voor duurzaam computergebruik.</p>
|
<p>Ik ondersteun de <a href="https://endof10.org" target="_blank">End-of-10</a>-beweging voor duurzaam computergebruik.</p>
|
||||||
<p><a href="/over-mij">Over mij</a> · <a href="/contact">Contact</a></p>
|
<p><a href="/over-mij">Over mij</a> · <a href="/contact">Contact</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -60,9 +60,33 @@
|
|||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "LocalBusiness",
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
"name": "{{.CompanyName}}",
|
"name": "{{.CompanyName}}",
|
||||||
"description": "Linux-migratieservice voor Windows 10 end-of-life. Professionele installatie, datamigratie en ondersteuning.",
|
"description": "Linux-migratieservice voor Windows 10 end-of-life. Professionele installatie, datamigratie en ondersteuning.",
|
||||||
"url": "https://{{.Domain}}",
|
"url": "https://{{.Domain}}",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
"telephone": "{{.Phone}}",
|
"telephone": "{{.Phone}}",
|
||||||
"email": "{{.Email}}",
|
"email": "{{.Email}}",
|
||||||
"address": {
|
"address": {
|
||||||
@ -74,18 +98,73 @@
|
|||||||
},
|
},
|
||||||
"geo": {
|
"geo": {
|
||||||
"@type": "GeoCoordinates",
|
"@type": "GeoCoordinates",
|
||||||
"latitude": "53.4107",
|
"latitude": "53.36045",
|
||||||
"longitude": "6.4684"
|
"longitude": "6.46010"
|
||||||
},
|
},
|
||||||
"areaServed": {
|
"areaServed": [
|
||||||
"@type": "Place",
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
"name": "gemeente Het Hogeland"
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" },
|
||||||
},
|
{ "@type": "Place", "name": "Groningen" },
|
||||||
"serviceType": "Linux migratie service",
|
{ "@type": "Place", "name": "Adorp" },
|
||||||
"priceRange": "€€",
|
{ "@type": "Place", "name": "Baflo" },
|
||||||
"image": "https://{{.Domain}}/static/TuxAinrom.webp",
|
{ "@type": "Place", "name": "Bedum" },
|
||||||
|
{ "@type": "Place", "name": "Den Andel" },
|
||||||
|
{ "@type": "Place", "name": "Doodstil" },
|
||||||
|
{ "@type": "Place", "name": "Eenrum" },
|
||||||
|
{ "@type": "Place", "name": "Eppenhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Kloosterburen" },
|
||||||
|
{ "@type": "Place", "name": "'t Lage van de Weg" },
|
||||||
|
{ "@type": "Place", "name": "Mensingeweer" },
|
||||||
|
{ "@type": "Place", "name": "Hornhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Houwerzijl" },
|
||||||
|
{ "@type": "Place", "name": "Kantens" },
|
||||||
|
{ "@type": "Place", "name": "Lauwersoog" },
|
||||||
|
{ "@type": "Place", "name": "Leens" },
|
||||||
|
{ "@type": "Place", "name": "Niekerk" },
|
||||||
|
{ "@type": "Place", "name": "Noordwolde" },
|
||||||
|
{ "@type": "Place", "name": "Onderdendam" },
|
||||||
|
{ "@type": "Place", "name": "Oosteinde" },
|
||||||
|
{ "@type": "Place", "name": "Oosternieland" },
|
||||||
|
{ "@type": "Place", "name": "Oldenzijl" },
|
||||||
|
{ "@type": "Place", "name": "Pieterburen" },
|
||||||
|
{ "@type": "Place", "name": "Rasquert" },
|
||||||
|
{ "@type": "Place", "name": "Roodeschool" },
|
||||||
|
{ "@type": "Place", "name": "Rottum" },
|
||||||
|
{ "@type": "Place", "name": "Saaxumhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Sauwerd" },
|
||||||
|
{ "@type": "Place", "name": "Schouwerzijl" },
|
||||||
|
{ "@type": "Place", "name": "Stitswerd" },
|
||||||
|
{ "@type": "Place", "name": "Tinallinge" },
|
||||||
|
{ "@type": "Place", "name": "Uithuizen" },
|
||||||
|
{ "@type": "Place", "name": "Uithuizermeeden" },
|
||||||
|
{ "@type": "Place", "name": "Ulrum" },
|
||||||
|
{ "@type": "Place", "name": "Usquert" },
|
||||||
|
{ "@type": "Place", "name": "Vierhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Warffum" },
|
||||||
|
{ "@type": "Place", "name": "Warfhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Wehe-den Hoorn" },
|
||||||
|
{ "@type": "Place", "name": "Westernieland" },
|
||||||
|
{ "@type": "Place", "name": "Wetsinge" },
|
||||||
|
{ "@type": "Place", "name": "Winsum" },
|
||||||
|
{ "@type": "Place", "name": "Zandeweer" },
|
||||||
|
{ "@type": "Place", "name": "Zoutkamp" },
|
||||||
|
{ "@type": "Place", "name": "Zuidwolde" },
|
||||||
|
{ "@type": "Place", "name": "Zuurdijk" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://endof10.org"
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -170,26 +249,7 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<h2><a href="/linux">Welke Linux past bij u?</a></h2>
|
<h2><a href="/linux">Welke Linux past bij u?</a></h2>
|
||||||
<p class="section-subtitle">Er zijn veel Linux-distributies, elk met hun eigen voordelen. Ik help u graag de perfecte keuze te maken.</p>
|
<p class="section-subtitle">Er zijn veel Linux-distributies, elk met hun eigen voordelen. Ik help u graag de perfecte keuze te maken.</p>
|
||||||
<div class="distros-grid">
|
<div class="distros-grid">
|
||||||
<a class="card card--distro card-link" href="/linux">
|
|
||||||
<div class="distro-header">
|
|
||||||
<div class="distro-logo">
|
|
||||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEiUlEQVR4nO1ZXWgcVRQeVNAna0Xw3tSaB/viQ6EP6ltMobXN3EmsRkpDraVCaSISsbV/YrE0P+CDtJuIPpX0xUIxaaRVUBRbX6q2D0piEOKDm02Zu5P9S5Z2/5LtHDl3kmUnO7tzZzO7bWEPHHZnmLnzffeev3uuojSkIQ1Zs8Bp5ZGw9uwrOqMndUbHdEYnuUoSXCW5ZU3gPZ3RUXwGn8V3lPstkZ3PUF2lA5yRWc4oeFKVhPBdHKPuwEPa8+u5SoY4IxnPwEuUZHCs4K7mp+oCnjPSqTM6t3bgdtVVauDYNQMOu5VHrVn3FzgvXZEAfstX8MHW5ie4SsZrD56u+Mc4ftMX8DgbGD3qBp4VSFyBVuWxNRPw22zCWhNEDr0qlGsb3EicWxt4Rjr9Bp/75xasSG7qprhX7nmdUVPX6JtVgU9sX79OZ5T7SSDSsxVWSwRXwiU6Ydj2PvsqGfYM8vWNMP9ZD6R//RbyPAhmJgVmNg15IwQLgSMQ/2RPKYGeygSWTWnIE3jMjtUkqehhDcA0wUnyxizM7dsifgsmNHnD3Q+EkoynjG2VB5LAtSa4c/FzMPZuFtepny5BOUlfGwNj3xZYGD4GicGDkuALpjQgBR6LLKxTZAe+880XFrjr4+La2PMi3JuPlCWRn7sNqR8vCk1eGPRCYEaqAMRKUXbQ+Kkum8kkzuy3TKl3hzCncOcLQqNH2uHu1REwlxZLCMVPvyNvpip5yd18GD0pNVj7c7CkB21gctN/AW8vbxbR3tcgHzfsKxKegfCuZrlV0OgJGQJjMoMl+g7YgJiLOYi+v83d0Xt3lKxEov9dOQKMjroTUOnfFTNoT6tw3IXhozYQd6+clzaF1Hcjdue+Pi5LYNKVAFdJzDWDTv4Gc3s3C4dckeiHTJoA+kSxLIWmZX0gKkMgJ5NBMRSmfvi6cB1+a5O8M1atJFsdge5WBwJHRSh8EAnEHE1o6mYBbHbihkhcNhM6rEkDidXShHRXJ8YyuAnmh4/ZnfjqiLwTf3+hdk6sy4bRM/ttIDA0Ypx3ey/6wU6A1WG074CPYVQ2kWkbYEn/zwYke+tn4KypIvh7qxMZD8onMpUe97eUwPJ4uZTARBZ5b6t1/1SXsHN0bNTYRx2W2TiVEp++7W8p4bmYuzQkgCTP94nryKEWMHPZEqCFGTdmRfhFTY4M+F/MeS6nGYXkVx+L2oh3bITF6T/Lgk//Mir2BJhD5gcPVtxOOhDoV2q9oUl+eaLCzIesDU1R6M1N/SFJwuOGpupuRAduKbshfe2ycHCxpcykRMVpbSm7SohFsLZyJxBQvEqs7eknfd/UO2T0SHeLm+kYVfdNl/ugpl8EVmf03NTv7m0Vlb5RFfgiEgE/V6GQ0btbXO1fV+lZ5aFuLe72qcn7b9umx+vZ3NVVehm/qdSgvX7OT5/gzjZ/1vf2erFgr9I6jPB91o2q+6BeBcOar0dMjATqdsTkcMjX76V2KprxGXz3vhzyORaAbeRl7NtYEYtMcEbihWNW/M/IhDhmVelxrCofiGPWhjREefjlf0AT6pAJW8ezAAAAAElFTkSuQmCC" alt="ubuntu--v1">
|
|
||||||
</div>
|
|
||||||
<div class="distro-header-content">
|
|
||||||
<h3>Ubuntu</h3>
|
|
||||||
<span class="distro-tag">Populair</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="distro-description">Perfect voor beginners die van Windows komen. Gebruiksvriendelijk met veel ondersteuning.</p>
|
|
||||||
<div class="distro-features">
|
|
||||||
<span class="feature">✓ Eenvoudig</span>
|
|
||||||
<span class="feature">✓ Grote community</span>
|
|
||||||
<span class="feature">✓ LTS versies</span>
|
|
||||||
</div>
|
|
||||||
<p class="distro-ideal">Ideaal voor: <strong>Beginners, kantoorwerk, algemeen gebruik</strong></p>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a class="card card--distro card-link" href="/linux">
|
<a class="card card--distro card-link" href="/linux">
|
||||||
<div class="distro-header">
|
<div class="distro-header">
|
||||||
<div class="distro-logo">
|
<div class="distro-logo">
|
||||||
@ -211,6 +271,25 @@
|
|||||||
<p class="distro-ideal">Ideaal voor: <strong>Windows migratie, ouderen, conservatieve gebruikers</strong></p>
|
<p class="distro-ideal">Ideaal voor: <strong>Windows migratie, ouderen, conservatieve gebruikers</strong></p>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<a class="card card--distro card-link" href="/linux">
|
||||||
|
<div class="distro-header">
|
||||||
|
<div class="distro-logo">
|
||||||
|
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEiUlEQVR4nO1ZXWgcVRQeVNAna0Xw3tSaB/viQ6EP6ltMobXN3EmsRkpDraVCaSISsbV/YrE0P+CDtJuIPpX0xUIxaaRVUBRbX6q2D0piEOKDm02Zu5P9S5Z2/5LtHDl3kmUnO7tzZzO7bWEPHHZnmLnzffeev3uuojSkIQ1Zs8Bp5ZGw9uwrOqMndUbHdEYnuUoSXCW5ZU3gPZ3RUXwGn8V3lPstkZ3PUF2lA5yRWc4oeFKVhPBdHKPuwEPa8+u5SoY4IxnPwEuUZHCs4K7mp+oCnjPSqTM6t3bgdtVVauDYNQMOu5VHrVn3FzgvXZEAfstX8MHW5ie4SsZrD56u+Mc4ftMX8DgbGD3qBp4VSFyBVuWxNRPw22zCWhNEDr0qlGsb3EicWxt4Rjr9Bp/75xasSG7qprhX7nmdUVPX6JtVgU9sX79OZ5T7SSDSsxVWSwRXwiU6Ydj2PvsqGfYM8vWNMP9ZD6R//RbyPAhmJgVmNg15IwQLgSMQ/2RPKYGeygSWTWnIE3jMjtUkqehhDcA0wUnyxizM7dsifgsmNHnD3Q+EkoynjG2VB5LAtSa4c/FzMPZuFtepny5BOUlfGwNj3xZYGD4GicGDkuALpjQgBR6LLKxTZAe+880XFrjr4+La2PMi3JuPlCWRn7sNqR8vCk1eGPRCYEaqAMRKUXbQ+Kkum8kkzuy3TKl3hzCncOcLQqNH2uHu1REwlxZLCMVPvyNvpip5yd18GD0pNVj7c7CkB21gctN/AW8vbxbR3tcgHzfsKxKegfCuZrlV0OgJGQJjMoMl+g7YgJiLOYi+v83d0Xt3lKxEov9dOQKMjroTUOnfFTNoT6tw3IXhozYQd6+clzaF1Hcjdue+Pi5LYNKVAFdJzDWDTv4Gc3s3C4dckeiHTJoA+kSxLIWmZX0gKkMgJ5NBMRSmfvi6cB1+a5O8M1atJFsdge5WBwJHRSh8EAnEHE1o6mYBbHbihkhcNhM6rEkDidXShHRXJ8YyuAnmh4/ZnfjqiLwTf3+hdk6sy4bRM/ttIDA0Ypx3ey/6wU6A1WG074CPYVQ2kWkbYEn/zwYke+tn4KypIvh7qxMZD8onMpUe97eUwPJ4uZTARBZ5b6t1/1SXsHN0bNTYRx2W2TiVEp++7W8p4bmYuzQkgCTP94nryKEWMHPZEqCFGTdmRfhFTY4M+F/MeS6nGYXkVx+L2oh3bITF6T/Lgk//Mir2BJhD5gcPVtxOOhDoV2q9oUl+eaLCzIesDU1R6M1N/SFJwuOGpupuRAduKbshfe2ycHCxpcykRMVpbSm7SohFsLZyJxBQvEqs7eknfd/UO2T0SHeLm+kYVfdNl/ugpl8EVmf03NTv7m0Vlb5RFfgiEgE/V6GQ0btbXO1fV+lZ5aFuLe72qcn7b9umx+vZ3NVVehm/qdSgvX7OT5/gzjZ/1vf2erFgr9I6jPB91o2q+6BeBcOar0dMjATqdsTkcMjX76V2KprxGXz3vhzyORaAbeRl7NtYEYtMcEbihWNW/M/IhDhmVelxrCofiGPWhjREefjlf0AT6pAJW8ezAAAAAElFTkSuQmCC" alt="ubuntu--v1">
|
||||||
|
</div>
|
||||||
|
<div class="distro-header-content">
|
||||||
|
<h3>Ubuntu</h3>
|
||||||
|
<span class="distro-tag">Populair</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p class="distro-description">Perfect voor beginners die van Windows komen. Gebruiksvriendelijk met veel ondersteuning.</p>
|
||||||
|
<div class="distro-features">
|
||||||
|
<span class="feature">✓ Eenvoudig</span>
|
||||||
|
<span class="feature">✓ Grote community</span>
|
||||||
|
<span class="feature">✓ LTS versies</span>
|
||||||
|
</div>
|
||||||
|
<p class="distro-ideal">Ideaal voor: <strong>Beginners, kantoorwerk, algemeen gebruik</strong></p>
|
||||||
|
</a>
|
||||||
|
|
||||||
<a class="card card--distro card-link" href="/linux">
|
<a class="card card--distro card-link" href="/linux">
|
||||||
<div class="distro-header">
|
<div class="distro-header">
|
||||||
<div class="distro-logo">
|
<div class="distro-logo">
|
||||||
|
|||||||
@ -38,6 +38,75 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Informatie over Linux en distributiekeuze. Professionele hulp bij de overstap.",
|
||||||
|
"url": "https://{{.Domain}}/linux",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" },
|
||||||
|
{ "@type": "Place", "name": "Groningen" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -45,6 +45,75 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Over mij: wie ik ben en waarom ik Linux promoot in Het Hogeland.",
|
||||||
|
"url": "https://{{.Domain}}/over-mij",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" },
|
||||||
|
{ "@type": "Place", "name": "Groningen" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
Reference in New Issue
Block a user