Compare commits
3 Commits
d5913d5928
...
d124561ef9
Author | SHA1 | Date | |
---|---|---|---|
d124561ef9 | |||
8c6f9a18b6 | |||
c9103c29b6 |
@ -8,8 +8,8 @@ services:
|
||||
environment:
|
||||
- PORT=8080
|
||||
- COMPANY_NAME=Hogeland Linux
|
||||
- KVK=12345678
|
||||
- EMAIL=info@hogelandlinux.nl
|
||||
- KVK=91927935
|
||||
- EMAIL=info@chemistry.software
|
||||
- PHONE=+31 6 12345678
|
||||
- STREET=Voorstraat 123
|
||||
- POSTAL_CODE=9967 AA
|
||||
|
4
main.go
4
main.go
@ -82,8 +82,8 @@ func NewServer() *Server {
|
||||
// Configuration - can be overridden with environment variables
|
||||
config := Config{
|
||||
CompanyName: getEnv("COMPANY_NAME", "Hogeland Linux"),
|
||||
KVK: getEnv("KVK", "12345678"), // Replace with actual KVK number
|
||||
Email: getEnv("EMAIL", "info@hogelandlinux.nl"),
|
||||
KVK: getEnv("KVK", "91927935"), // Replace with actual KVK number
|
||||
Email: getEnv("EMAIL", "info@chemistry.software"),
|
||||
Phone: getEnv("PHONE", "+31 6 12345678"),
|
||||
Street: getEnv("STREET", "Voorstraat 123"),
|
||||
PostalCode: getEnv("POSTAL_CODE", "9967 AA"),
|
||||
|
BIN
static/DutchOpen2024.jpg
Normal file
BIN
static/DutchOpen2024.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 281 KiB |
@ -985,10 +985,28 @@ footer {
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
/* Photo visibility control */
|
||||
.about-photo-mobile {
|
||||
display: none; /* Hidden on desktop */
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.about-photo-desktop {
|
||||
display: block; /* Shown on desktop */
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.about-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.about-photo-mobile {
|
||||
display: block; /* Show mobile photo after first paragraph */
|
||||
}
|
||||
|
||||
.about-photo-desktop {
|
||||
display: none; /* Hide desktop photo */
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
|
@ -63,6 +63,14 @@
|
||||
<div class="about-text">
|
||||
<p>Moi! Ik ben {{.AboutName}} ({{.AgeYears}}). Ik ben opgegroeid in <strong>Baflo</strong> en woon sinds <strong>2023</strong> in <strong>Eenrum</strong>, samen met mijn partner en onze {{.SonAgeYears}}-jarige zoon. Het Hogeland is mijn thuis - en juist hier wil ik mensen helpen om hun computers duurzaam, veilig en prettig te blijven gebruiken met Linux.</p>
|
||||
|
||||
<!-- Photo appears here on mobile after first paragraph -->
|
||||
<div class="about-photo about-photo-mobile">
|
||||
<figure>
|
||||
<img src="/static/DutchOpen2024.jpg" alt="Foto van mijzelf met mijn zoontje bij grasbaanraces">
|
||||
<figcaption><small>Ik met mijn zoontje bij de grasbaanraces (Dutch Open 2024)</small></figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<p>Linux gebruik ik al ruim <strong>20 jaar</strong>. Eerst uit nieuwsgierigheid, later uit overtuiging: het is veilig, snel, privacyvriendelijk en geeft je de regie over je eigen computer. In mijn werk heb ik <strong>meer dan 10 jaar</strong> ervaring als <strong>organisch chemicus</strong> en ben ik daarna <strong>softwareontwikkelaar</strong> geworden (nu <strong>5+ jaar</strong>). In beide werelden werkte ik veel met Linux en servers - van dataverwerking tot automatisering en betrouwbare infrastructuur.</p>
|
||||
|
||||
<p>Met {{.CompanyName}} wil ik de <strong>Linux-evangelist van Het Hogeland</strong> zijn: iemand die je helpt bij de overstap, de juiste keuzes met je afstemt en ervoor zorgt dat jouw computer weer jaren mee kan. Of je nu wilt migreren van Windows 10, nieuwsgierig bent naar Linux, of gewoon hulp nodig hebt met je systeem - ik sta voor je klaar.</p>
|
||||
@ -75,10 +83,10 @@
|
||||
<a href="/contact" class="btn btn-primary">Neem contact op</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="about-photo">
|
||||
<div class="about-photo about-photo-desktop">
|
||||
<figure>
|
||||
<img src="/static/TuxAinrom.webp" alt="Foto van mijzelf">
|
||||
<figcaption><small>{{.AboutName}}</small></figcaption>
|
||||
<img src="/static/DutchOpen2024.jpg" alt="Foto van mijzelf met mijn zoontje bij grasbaanraces">
|
||||
<figcaption><small>Ik met mijn zoontje bij de grasbaanraces (Dutch Open 2024)</small></figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user