This commit is contained in:
2026-09-06 00:14:07 +02:00
parent 56e7e28142
commit 4d8a7a6924
41 changed files with 2993 additions and 0 deletions
@@ -0,0 +1,44 @@
<?php
/**
* Benefits partial (Where to place: home + linux pages).
* Variable: $hl_section_class
*/
$hl_section_class = isset( $hl_section_class ) ? $hl_section_class : 'section--light';
?>
<section id="voordelen" class="section <?php echo esc_attr( $hl_section_class ); ?> benefits">
<div class="container">
<h2><a href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">Waarom Linux kiezen?</a></h2>
<div class="benefits-grid">
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#128737;&#65039;</div>
<h3>Veilig en betrouwbaar</h3>
<p>Beschermd tegen virussen en zonder storende, onverwachte updates. U houdt de controle over uw computer.</p>
</a>
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#128176;</div>
<h3>Helemaal gratis</h3>
<p>Geen licenties of abonnementen nodig. Linux en de meeste programma&rsquo;s zijn kosteloos.</p>
</a>
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#128260;</div>
<h3>Geschikt voor oudere computers</h3>
<p>Ook een computer die al jaren meegaat kan met Linux weer soepel draaien.</p>
</a>
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#127793;</div>
<h3>Beter voor het milieu</h3>
<p>Door langer met uw computer te doen voorkomt u elektronisch afval (e-waste). Goed voor uw portemonnee en voor de planeet.</p>
</a>
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#128274;</div>
<h3>Uw privacy blijft van uzelf</h3>
<p>Geen verborgen gegevensverzameling of tracking.</p>
</a>
<a class="card card--benefit card-link" href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">
<div class="card__icon">&#9889;</div>
<h3>Sneller werken</h3>
<p>Linux start vlot op en voelt vaak lichter aan dan andere systemen.</p>
</a>
</div>
</div>
</section>
@@ -0,0 +1,45 @@
<?php
/**
* Linux features partial (home + linux pages).
* Variable: $hl_section_class
*/
$hl_section_class = isset( $hl_section_class ) ? $hl_section_class : 'section--light-green';
?>
<section class="section <?php echo esc_attr( $hl_section_class ); ?> linux-features">
<div class="container">
<h2><a href="<?php echo esc_url( home_url( '/waarom-linux/' ) ); ?>">Linux in actie</a></h2>
<p class="section-subtitle">Zie hoe Linux eruitziet en werkt in de praktijk</p>
<div class="features-grid">
<div class="feature-showcase">
<div class="feature-image">
<img src="<?php echo esc_url( HOGELANDLINUX_URL . '/assets/images/Zorin-17-desktop.webp' ); ?>" alt="Zorin OS 17 Desktop" loading="lazy">
<div class="image-caption">
<small>Bron: <a href="https://www.debugpoint.com/wp-content/uploads/2023/12/Zorin-17-desktop.jpg" target="_blank" rel="noopener">DebugPoint.com</a></small>
</div>
</div>
<h3>Moderne desktopinterface</h3>
<p>Ziet er vertrouwd uit, werkt snel en stabiel. Ideaal voor dagelijks gebruik.</p>
</div>
<div class="feature-showcase">
<div class="feature-image">
<img src="<?php echo esc_url( HOGELANDLINUX_URL . '/assets/images/LinuxMintCinnamonSoftwareManager.webp' ); ?>" alt="Linux Mint Softwarebeheer" loading="lazy">
<div class="image-caption">
<small>Bron: <a href="https://linuxmint.com" target="_blank" rel="noopener">LinuxMint.com</a></small>
</div>
</div>
<h3>Eenvoudig software installeren</h3>
<p>Duizenden gratis programma&rsquo;s met &eacute;&eacute;n klik via Softwarebeheer.</p>
</div>
<div class="feature-showcase">
<div class="feature-image">
<img src="<?php echo esc_url( HOGELANDLINUX_URL . '/assets/images/GamingBenchmarkLinuxvsWindows.webp' ); ?>" alt="Gamingprestaties Linux versus Windows" loading="lazy">
<div class="image-caption">
<small>Bron: <a href="https://www.youtube.com/watch?v=4LI-1Zdk-Ys" target="_blank" rel="noopener">Linux vs Windows Gaming Performance</a></small>
</div>
</div>
<h3>Gamingprestaties</h3>
<p>Prima geschikt voor gaming dankzij moderne drivers en optimalisaties.</p>
</div>
</div>
</div>
</section>