Aktuelles
This commit is contained in:
parent
81cf5f0563
commit
bcdb012e1c
@ -9,6 +9,7 @@ theme = "infinity-hugo"
|
|||||||
[params.navigation]
|
[params.navigation]
|
||||||
logo = "images/woidcamp_logo01.png"
|
logo = "images/woidcamp_logo01.png"
|
||||||
home = "Home"
|
home = "Home"
|
||||||
|
news = "Aktuelles"
|
||||||
about = "About"
|
about = "About"
|
||||||
details = "Details"
|
details = "Details"
|
||||||
service = "Info"
|
service = "Info"
|
||||||
@ -25,6 +26,12 @@ countdownYear = "2022"
|
|||||||
countdownMonth = "08"
|
countdownMonth = "08"
|
||||||
countdownDay = "18"
|
countdownDay = "18"
|
||||||
|
|
||||||
|
# News Section
|
||||||
|
[params.news]
|
||||||
|
enable = true
|
||||||
|
heading = "Aktuelles"
|
||||||
|
description = "Haltet Eure Klickfinger bereit, die zweite Runde Tickets gibt's am <b>15.05.2022 ab 20:00 Uhr</b>."
|
||||||
|
|
||||||
# About Section
|
# About Section
|
||||||
[params.about]
|
[params.about]
|
||||||
enable = true
|
enable = true
|
||||||
|
@ -459,6 +459,17 @@ a:active {
|
|||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
News start
|
||||||
|
--*/
|
||||||
|
.news .content h3 {
|
||||||
|
font-size: 26px;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 36px;
|
||||||
|
color: #7e7e7e;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
/*--
|
/*--
|
||||||
About start
|
About start
|
||||||
--*/
|
--*/
|
||||||
|
@ -57,6 +57,13 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="https://www.vvoid.camp#news">
|
||||||
|
Aktuelles
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="https://www.vvoid.camp#about">
|
<a class="nav-link" href="https://www.vvoid.camp#about">
|
||||||
About
|
About
|
||||||
@ -161,7 +168,30 @@
|
|||||||
|
|
||||||
|
|
||||||
<!-- About Section -->
|
<!-- About Section -->
|
||||||
<section id="about" class="section about bg-gray">
|
<section id="news" class="section news bg-gray">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12 col-sm-12 wow fadeInLeft">
|
||||||
|
<div class="content">
|
||||||
|
<div class="sub-heading m-b1">
|
||||||
|
|
||||||
|
<h3>Aktuelles</h3>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>Haltet Eure Klickfinger bereit, die zweite Runde Tickets gibt's am <b>15.05.2022 ab 20:00 Uhr</b>.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- About Section -->
|
||||||
|
<section id="about" class="section about bg-gray pt-0">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-7 col-sm-12 wow fadeInLeft">
|
<div class="col-md-7 col-sm-12 wow fadeInLeft">
|
||||||
|
@ -22,6 +22,8 @@ hours:
|
|||||||
other: "Hours"
|
other: "Hours"
|
||||||
minutes:
|
minutes:
|
||||||
other: "Minutes"
|
other: "Minutes"
|
||||||
|
news:
|
||||||
|
other: news
|
||||||
seconds:
|
seconds:
|
||||||
other: "Seconds"
|
other: "Seconds"
|
||||||
sendMe:
|
sendMe:
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
{{ partial "hero-area.html" . }}
|
{{ partial "hero-area.html" . }}
|
||||||
|
|
||||||
|
{{ partial "news.html" . }}
|
||||||
|
|
||||||
{{ partial "about.html" . }}
|
{{ partial "about.html" . }}
|
||||||
|
|
||||||
{{ partial "details.html" . }}
|
{{ partial "details.html" . }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{{ if .Site.Params.about.enable }}
|
{{ if .Site.Params.about.enable }}
|
||||||
{{"<!-- About Section -->" | safeHTML}}
|
{{"<!-- About Section -->" | safeHTML}}
|
||||||
<section id="{{ i18n "about" | urlize }}" class="section about bg-gray">
|
<section id="{{ i18n "about" | urlize }}" class="section about bg-gray pt-0">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-7 col-sm-12 wow fadeInLeft">
|
<div class="col-md-7 col-sm-12 wow fadeInLeft">
|
||||||
|
@ -15,6 +15,13 @@
|
|||||||
{{ with .Site.Params.navigation.home }} {{ . }} {{ end }}
|
{{ with .Site.Params.navigation.home }} {{ . }} {{ end }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
{{ if .Site.Params.news.enable }}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="{{ .Site.BaseURL }}#{{ i18n "news" | urlize }}">
|
||||||
|
{{ with .Site.Params.navigation.news }} {{ . }} {{ end }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
{{ if .Site.Params.about.enable }}
|
{{ if .Site.Params.about.enable }}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="{{ .Site.BaseURL }}#{{ i18n "about" | urlize }}">
|
<a class="nav-link" href="{{ .Site.BaseURL }}#{{ i18n "about" | urlize }}">
|
||||||
|
21
themes/infinity-hugo/layouts/partials/news.html
Normal file
21
themes/infinity-hugo/layouts/partials/news.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{{ if .Site.Params.news.enable }}
|
||||||
|
{{"<!-- About Section -->" | safeHTML}}
|
||||||
|
<section id="{{ i18n "news" | urlize }}" class="section news bg-gray">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12 col-sm-12 wow fadeInLeft">
|
||||||
|
<div class="content">
|
||||||
|
<div class="sub-heading m-b1">
|
||||||
|
{{ with .Site.Params.news.heading }}
|
||||||
|
<h3>{{ . }}</h3>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ with .Site.Params.news.description }}
|
||||||
|
<p>{{ . | safeHTML }}</p>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
@ -459,6 +459,18 @@ a:active {
|
|||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
News start
|
||||||
|
--*/
|
||||||
|
.news .content h3 {
|
||||||
|
font-size: 26px;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 36px;
|
||||||
|
color: #7e7e7e;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
/*font-family: 'Droid Serif', serif;*/
|
||||||
|
}
|
||||||
|
|
||||||
/*--
|
/*--
|
||||||
About start
|
About start
|
||||||
--*/
|
--*/
|
||||||
|
Loading…
Reference in New Issue
Block a user