full bootstrap 5 upgrade
Αυτό το commit περιλαμβάνεται σε:
γονέας
e2f15f100d
commit
bf9b29d51f
26 αρχεία άλλαξαν με 498 προσθήκες και 517 διαγραφές
|
@ -1,91 +1,94 @@
|
|||
{{ partial "head.html" . }}
|
||||
<!-- Header Start -->
|
||||
<!-- Header Start -->
|
||||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ if .Params.bannertemplate }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
{{.Content}}
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
{{.Content}}
|
||||
|
||||
<!-- Articles Section -->
|
||||
<div class="well well-lg">
|
||||
{{ $articlelimit := 5 }}
|
||||
{{ $articlenum := len .Pages }}
|
||||
{{ $counter := 0 }}
|
||||
{{ $recentpostlimit := (sub now.Unix 31536000 ) }}
|
||||
{{ range first $articlelimit .Pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary }}
|
||||
<!-- Articles Section -->
|
||||
{{ $articlelimit := 5 }}
|
||||
{{ $articlenum := len .Pages }}
|
||||
{{ $counter := 0 }}
|
||||
{{ $recentpostlimit := (sub now.Unix 31536000 ) }}
|
||||
{{ range first $articlelimit .Pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="card card-primary">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{else}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- End Articles Section -->
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{else}}
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- End Articles Section -->
|
||||
|
||||
{{ if gt $articlenum $articlelimit }}
|
||||
<!-- Older Articles Summary -->
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Παλαιότερα άρθρα</a>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
{{ range after 10 .Pages }}
|
||||
<li><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ if gt $articlenum $articlelimit }}
|
||||
<!-- Older Articles Summary -->
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Παλαιότερα άρθρα</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
{{ range after 10 .Pages }}
|
||||
<li><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- End Older Articles -->
|
||||
{{ end }}
|
||||
</div></div>
|
||||
</div>
|
||||
<!-- End Older Articles -->
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -3,15 +3,21 @@
|
|||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
{{ partial "breadcrump.html"}}
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
<h2 class="title">{{ .Title }}</h2>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
|
||||
<ul class="list-inline">
|
||||
{{ if .Params.meetupdate }}
|
||||
|
@ -24,17 +30,17 @@
|
|||
<li class="list-inline-item"><b>🏛</b> {{ .Params.meetuplocation }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<div id="content-area">
|
||||
|
||||
{{.Content}}
|
||||
{{.Content | safeHTML }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -3,28 +3,33 @@
|
|||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
{{ partial "breadcrump.html"}}
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
<main>
|
||||
<div class="container mt-3 mb-3">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
<h2 class="title">{{ .Title }}</h2>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
|
||||
<div id="content-area">
|
||||
|
||||
{{.Content | safeHTML }}
|
||||
|
||||
|
||||
{{.Content}}
|
||||
|
||||
</div></div>
|
||||
</div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -2,34 +2,30 @@
|
|||
<!-- Header Start -->
|
||||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
<div style="padding-left:10px;">
|
||||
<div class="section">
|
||||
{{ partial "breadcrump.html"}}
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
<hr>
|
||||
<div id="content-area">
|
||||
|
||||
{{.Content}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -3,21 +3,30 @@
|
|||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
<main>
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
<div class="container mt-3 mb-3">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
|
||||
{{.Content}}
|
||||
|
||||
</div></div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -3,34 +3,40 @@
|
|||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
{{.Content}}
|
||||
|
||||
<!-- Articles Section -->
|
||||
<div class="well well-lg">
|
||||
{{ $articlelimit := 5 }}
|
||||
{{ $articlenum := len .Pages }}
|
||||
{{ $counter := 0 }}
|
||||
{{ $lastyear := (sub now.Unix 31536000 ) }}
|
||||
{{ $recentpostlimit := (sub now.Unix 31536000 ) }}
|
||||
{{ range first $articlelimit .Pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<div class="card card-primary">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $lastyear .Date.Unix }}
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
|
@ -39,15 +45,15 @@
|
|||
</div>
|
||||
<!-- First Post End -->
|
||||
{{else}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $lastyear .Date.Unix }}
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
|
@ -57,13 +63,13 @@
|
|||
{{ end }}
|
||||
<!-- End Articles Section -->
|
||||
|
||||
<!-- Older Articles Summary -->
|
||||
{{ if gt $articlenum $articlelimit }}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Παλαιότερα άρθρα</a>
|
||||
<!-- Older Articles Summary -->
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Παλαιότερα άρθρα</a>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
{{ range after 10 .Pages }}
|
||||
<li><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
|
@ -72,16 +78,17 @@
|
|||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
<!-- End Older Articles -->
|
||||
|
||||
</div></div>
|
||||
<!-- End Older Articles -->
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -1,87 +1,94 @@
|
|||
{{ partial "head.html" . }}
|
||||
<!-- Header Start -->
|
||||
<!-- Header Start -->
|
||||
{{ partial "header.html" . }}
|
||||
<!-- Header End -->
|
||||
<!-- Header End -->
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{ if .Params.bannertemplate }}
|
||||
{{ partial .Params.bannertemplate . }}
|
||||
{{else}}
|
||||
{{ partial "hellug-banner.html" . }}
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
{{ partial "breadcrump.html"}}
|
||||
|
||||
{{.Content}}
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
{{.Content}}
|
||||
|
||||
<!-- Articles Section -->
|
||||
<div class="well well-lg">
|
||||
{{ $articlelimit := 5 }}
|
||||
{{ $articlenum := len .Pages }}
|
||||
{{ $counter := 0 }}
|
||||
{{ $lastyear := (sub now.Unix 31536000 ) }}
|
||||
{{ range first $articlelimit .Pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $lastyear .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary }}
|
||||
<!-- Articles Section -->
|
||||
{{ $articlelimit := 5 }}
|
||||
{{ $articlenum := len .Pages }}
|
||||
{{ $counter := 0 }}
|
||||
{{ $recentpostlimit := (sub now.Unix 31536000 ) }}
|
||||
{{ range first $articlelimit .Pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="card border-primary mb-3">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h4>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="badge bg-secondary">Nέο</span>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{else}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $lastyear .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- End Articles Section -->
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{else}}
|
||||
<div class="card card-default mb-2">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h4>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="badge bg-secondary">Nέο</span>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- End Articles Section -->
|
||||
|
||||
<!-- Older Articles Summary -->
|
||||
{{ if gt $articlenum $articlelimit }}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Παλαιότερα άρθρα</a>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
{{ range after 10 .Pages }}
|
||||
<li><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
<!-- End Older Articles -->
|
||||
{{ if gt $articlenum $articlelimit }}
|
||||
<!-- Older Articles Summary -->
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Παλαιότερα άρθρα</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
{{ range after 10 .Pages }}
|
||||
<li><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div></div>
|
||||
</div>
|
||||
<!-- End Older Articles -->
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -1,68 +1,71 @@
|
|||
{{ partial "head.html" . }}
|
||||
{{ partial "header.html" . }}
|
||||
{{- partial "head.html" . }}
|
||||
{{- partial "header.html" . }}
|
||||
|
||||
<div class="pagewrap">
|
||||
<div align="center" style="margin:4px;">
|
||||
{{ partial "carousel.html" . }}
|
||||
<div class="container center mt-3 mb-3">
|
||||
{{- partial "carousel.html" . }}
|
||||
</div>
|
||||
|
||||
<div id="column1">
|
||||
|
||||
{{.Content}}
|
||||
|
||||
<!-- Articles Section -->
|
||||
<div class="well well-lg">
|
||||
{{ $counter := 0 }}
|
||||
{{ $pages := .Site.RegularPages }}
|
||||
{{ $recentpostlimit := (sub now.Unix 2592000 ) }}
|
||||
{{ range first 5 $pages }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
{{ if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary | plainify | safeHTML }}
|
||||
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- welcome -->
|
||||
<div class="container">
|
||||
{{- partial "welcome.html" . }}
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{ else }}
|
||||
<!-- welcome end -->
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
|
||||
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="label label-default">Nέο</span></h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{ .Summary }}
|
||||
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end}}
|
||||
|
||||
|
||||
{{ end }}
|
||||
|
||||
<!-- End Articles Section -->
|
||||
</div></div>
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{ partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- Articles Section -->
|
||||
<div class="col-md-9">
|
||||
{{- $counter := 0 }}
|
||||
{{- $pages := .Site.RegularPages }}
|
||||
{{- $recentpostlimit := (sub now.Unix 2592000 ) }}
|
||||
{{- range first 5 $pages }}
|
||||
{{- $counter = add $counter 1 }}
|
||||
{{- if eq $counter 1 }}
|
||||
<!-- First Post -->
|
||||
<div class="card border-primary mb-3">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h3>
|
||||
<small>{{- dateFormat "02/01/2006" .Date }}</small>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="badge bg-secondary">Nέο</span>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
{{- .Summary | plainify | safeHTML }}
|
||||
</p>
|
||||
<a href="{{.Permalink}}" class="btn btn-primary btn-sm">Περισσότερα...</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- First Post End -->
|
||||
{{- else }}
|
||||
<div class="card mb-2">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h4>
|
||||
<small class="text-body-secondary">{{- dateFormat "02/01/2006" .Date }}</small>
|
||||
{{ if lt $recentpostlimit .Date.Unix }}
|
||||
<span class="badge bg-secondary">Nέο</span>
|
||||
{{- end }}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
{{- .Summary | plainify | safeHTML }}
|
||||
</p>
|
||||
<a href="{{.Permalink}}" class="btn btn-primary btn-sm"></span>Περισσότερα...</a>
|
||||
</div>
|
||||
</div>
|
||||
{{- end}}
|
||||
{{- end }}
|
||||
</div>
|
||||
<!-- End Articles Section -->
|
||||
|
||||
<!-- Column 2 start -->
|
||||
{{- partial "column2.html" . }}
|
||||
<!-- Column 2 end -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- Footer Start -->
|
||||
{{ partial "footer.html" . }}
|
||||
<!-- Footer End -->
|
||||
|
|
|
@ -1,18 +1,5 @@
|
|||
|
||||
<!-- Carousel -->
|
||||
|
||||
<div id="this-carousel-id" class="carousel slide"><!-- class of slide for animation -->
|
||||
<div class="carousel-inner">
|
||||
<div class="item active"><!-- class of active since it's the first item -->
|
||||
<img src="media/carousel1.png" >
|
||||
|
||||
<div class="carousel-caption">
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- /.carousel-inner -->
|
||||
<!-- Next and Previous controls below
|
||||
href values must reference the id for this carousel -->
|
||||
<a class="carousel-control left" href="index.html#this-carousel-id" data-slide="prev">‹</a>
|
||||
<a class="carousel-control right" href="index.html#this-carousel-id" data-slide="next">›</a>
|
||||
</div><!-- /.carousel -->
|
||||
|
||||
<img class="img-fluid" alt="HEL.L.U.G Ένωση Χρηστών και Φίλων Λίνουξ Ελλαδας" src="media/carousel1.png" >
|
||||
</div>
|
||||
|
|
|
@ -1,71 +1,72 @@
|
|||
<div id="column2">
|
||||
<div class="col-md-3">
|
||||
<div class="well well-lg" align="center">
|
||||
<div class="list-group">
|
||||
<div class="list-group mb-2" >
|
||||
<span class="list-group-item active">HEL.L.U.G Meetups!</span>
|
||||
{{ $counter := 0 }}
|
||||
{{ range first 3 (index .Site.Taxonomies.draseis "meetups") }}
|
||||
{{ if .Params.meetupdate }}
|
||||
{{ $meetuptime := time .Params.meetupdate }}
|
||||
{{ $meetuptimeunix := add $meetuptime.Unix 86400 }}
|
||||
{{ if ge $meetuptimeunix now.Unix }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
<a class="list-group-item" href="{{ .Permalink}}">
|
||||
<span class="label label-default">Nέο</span>
|
||||
{{ dateFormat "02/01/2006" $meetuptime }} - {{ .Params.meetuplocation }}
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if eq $counter 0 }}
|
||||
<a class="list-group-item">Δεν υπάρχουν</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="list-group">
|
||||
<span class="list-group-item active"> Εκδηλώσεις </span>
|
||||
|
||||
{{ $counter = 0 }}
|
||||
{{ $newlimit := (sub now.Unix 604800 ) }}
|
||||
{{ range first 5 (index .Site.Taxonomies.draseis "event") }}
|
||||
{{ if .Params.eventdate }}
|
||||
{{ $eventtime := time .Params.eventdate }}
|
||||
{{ if ge $eventtime.Unix now.Unix }}
|
||||
{{ $counter = add $counter 1 }}
|
||||
<a class="list-group-item" href="{{ .Permalink }}">
|
||||
{{ if lt .Date.Unix $newlimit }}
|
||||
<span class="label label-default">Nέο</span>
|
||||
{{ end }}
|
||||
{{ dateFormat "02/01/2006" $eventtime }} - {{ .Title }}
|
||||
{{- $counter := 0 }}
|
||||
{{- range first 3 (index .Site.Taxonomies.draseis "meetups") }}
|
||||
{{- if .Params.meetupdate }}
|
||||
{{- $meetuptime := time .Params.meetupdate }}
|
||||
{{- $meetuptimeunix := add $meetuptime.Unix 86400 }}
|
||||
{{- if ge $meetuptimeunix now.Unix }}
|
||||
{{- $counter = add $counter 1 }}
|
||||
<a class="list-group-item" href="{{ .Permalink}}">
|
||||
<span class="label label-default">Nέο</span>
|
||||
{{ dateFormat "02/01/2006" $meetuptime }} - {{ .Params.meetuplocation }}
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if eq $counter 0 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if eq $counter 0 }}
|
||||
<a class="list-group-item">Δεν υπάρχουν</a>
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
</div>
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">HEL.L.U.G. Sites</h3>
|
||||
<div class="list-group mb-4">
|
||||
<span class="list-group-item active"> Εκδηλώσεις </span>
|
||||
{{- $counter = 0 }}
|
||||
{{- $newlimit := (sub now.Unix 604800 ) }}
|
||||
{{- range first 5 (index .Site.Taxonomies.draseis "event") }}
|
||||
{{- if .Params.eventdate }}
|
||||
{{- $eventtime := time .Params.eventdate }}
|
||||
{{- if ge $eventtime.Unix now.Unix }}
|
||||
{{- $counter = add $counter 1 }}
|
||||
<a class="list-group-item" href="{{ .Permalink }}">
|
||||
{{- if lt .Date.Unix $newlimit }}
|
||||
<span class="label label-default">Nέο</span>
|
||||
{{- end }}
|
||||
{{- dateFormat "02/01/2006" $eventtime }} - {{ .Title }}
|
||||
</a>
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if eq $counter 0 }}
|
||||
<a class="list-group-item">Δεν υπάρχουν</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="list-group mb-2">
|
||||
<div class="list-group-item active">
|
||||
<h6>HEL.L.U.G. Sites</h6>
|
||||
</div>
|
||||
<div class="panel-body" align="left">
|
||||
<ul class="nav">
|
||||
{{ range .Site.Data.sidebar.links.hellug }}
|
||||
<li class="nav-item"><a href={{ .url }}><button type="button" class="btn btn-link">{{ .name }}</button></a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
|
||||
{{- range .Site.Data.sidebar.links.hellug }}
|
||||
<div class="list-group-item">
|
||||
<a class="dropdown-item" href={{ .url }}>{{ .name }}</a>
|
||||
</div>
|
||||
{{- end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Ακολουθήστε τον HEL.L.U.G.</h3>
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title">Ακολουθήστε τον HEL.L.U.G.</h4>
|
||||
</div>
|
||||
<div class="panel-body" align="left">
|
||||
<div class="btn-group">
|
||||
<a href="https://twitter.com/hellug"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px; margin-bottom:4px;"><img src="/media/Twitter.png">Twitter</button></a>
|
||||
<a href="http://www.linkedin.com/groups/HELLUG-108292/about"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px; margin-bottom:4px;"><img src="/media/LinkedIn.png">LinkedIn</button></a>
|
||||
<a href="https://www.facebook.com/groups/hellug/"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px;margin-bottom:4px;"><img src="/media/Facebook.png">Facebook</button></a>
|
||||
<div class="card-body" align="left">
|
||||
<div class="btn-group flex-wrap">
|
||||
<a href="https://twitter.com/hellug"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px; margin-bottom:4px;"><img alt="" src="/media/Twitter.png">Twitter</button></a>
|
||||
<a href="http://www.linkedin.com/groups/HELLUG-108292/about"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px; margin-bottom:4px;"><img alt="" src="/media/LinkedIn.png">LinkedIn</button></a>
|
||||
<a href="https://www.facebook.com/groups/hellug/"><button type="button" class="btn btn-default" style="padding-top:1px; padding-bottom:1px;margin-bottom:4px;"><img alt="" src="/media/Facebook.png">Facebook</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,49 +1,38 @@
|
|||
<div class="footer" >
|
||||
<ul class="site-map">
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
{{ if .HasChildren }}
|
||||
<li><div>{{ .Name }}</div>
|
||||
<ul>
|
||||
{{ range .Children }}
|
||||
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>
|
||||
<div>{{ .Name }}</div>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<li><div>Σύνδεσμοι</div>
|
||||
<ul>
|
||||
{{ range .Site.Data.main.links.hellug }}
|
||||
<li><a href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
<footer class="bd-footer py-1 py-md-2 mt-2 bg-body-tertiary">
|
||||
<div class="container sticky-bottom py-1 py-md-2 px-3 px-md-3 text-body-secondary">
|
||||
<div class="row">
|
||||
{{- $currentPage := . }}
|
||||
{{- range .Site.Menus.main }}
|
||||
{{- if .HasChildren }}
|
||||
<div class="col">
|
||||
<ul class="list-unstyled list-group-flush">
|
||||
{{- .Name }}
|
||||
{{- range .Children }}
|
||||
<li class="list-group-item"><a href="{{ .URL }}">{{ .Name }}</a></li>
|
||||
{{- end }}
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{{ else }}
|
||||
<div>{{ .Name }}</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!--
|
||||
<div class="col">
|
||||
<ul class="list-unstyled list-group-flush">
|
||||
Σύνδεσμοι
|
||||
{{ range .Site.Data.main.links.hellug }}
|
||||
<li class="list-group-item"><a href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
<div class="infobar">
|
||||
<a href="/credits">Credits Ιστοσελίδας</a>
|
||||
<!-- Matomo -->
|
||||
<script>
|
||||
var _paq = window._paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="https://stats.hellug.gr/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', '1']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
|
||||
</div>
|
||||
<p class="text-end lh-1 fw-lighter">
|
||||
<small><a href="/credits">Συντελεστές Ιστοσελίδας</a></small>
|
||||
</p>
|
||||
<!-- Scripts -->
|
||||
{{- partial "scripts.html" . }}
|
||||
<!-- Scripts end -->
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,20 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<html lang="el" data-bs-theme="auto">
|
||||
<head>
|
||||
<base href="">
|
||||
<title>{{ .Title }} | HELLUG </title>
|
||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="description" content="Hellug Official" />
|
||||
<meta name="keywords" content="Hellug" />
|
||||
<meta charset="utf-8" >
|
||||
<meta name="robots" content="index, follow" >
|
||||
<meta name="description" content="Hellug Official Website" >
|
||||
<meta name="keywords" content="Hellug" >
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap -->
|
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="/static/css/hellug.css" rel="stylesheet" />
|
||||
<script type="text/javascript" src="/static/js/jquery-1.12.4.min.js"></script>
|
||||
<script src="/static/js/bootstrap.min.js"></script>
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<!-- <link href="/static/css/hellug.css" rel="stylesheet" /> -->
|
||||
{{ range .AlternativeOutputFormats -}}
|
||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end -}}
|
||||
<base href="">
|
||||
</head>
|
||||
<body id="main">
|
||||
<body>
|
||||
<script src="/js/bootstrap.bundle.min.js"></script>
|
||||
|
|
|
@ -1,87 +1,51 @@
|
|||
<header>
|
||||
<nav class="navbar navbar-expand-lg bg-body-tertiary" >
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/"><img alt="Αρχική" src="/media/tux-feet.png"></a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<nav class="navbar navbar-default" role="navigation">
|
||||
<!-- Brand and toggle get grouped for better mobile display -->
|
||||
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/"><span class="glyphicon glyphicon-home"></span></a>
|
||||
</div>
|
||||
|
||||
<!-- Collect the nav links, forms, and other content for toggling -->
|
||||
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<!-- menu items -->
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
{{ if .HasChildren }}
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ .Name }}<b class="caret"></b></a>
|
||||
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
|
||||
{{ range .Children }}
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="{{ .URL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ .Name }}<b class="caret"></b></a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- menu items end -->
|
||||
<!-- DISABLED
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> Linux<b class="caret"></b></a>
|
||||
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="/p/ti-einai-to-linux">Τι είναι;</a>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="/linux/help">Οδηγοί - Βοήθεια</a>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="/linux/elefthero-logismiko">Ελεύθερο Λογισμικό</a>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="/linux/dianomes/dianomes">Διανομές</a>
|
||||
</li>
|
||||
<li class="dropdown-submenu">
|
||||
<a tabindex="-1" href="/linux/koinotites">Κοινότητες</a>
|
||||
<ul class="dropdown-menu"> <li><a tabindex="-1" href="/linux/koinotites/ellinikes-koinotites/ellinikes-koinotites">Ελληνικές Κοινότητες</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
-->
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> Σύνδεσμοι<b class="caret"></b></a>
|
||||
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
|
||||
{{ range .Site.Data.main.links.hellug }}
|
||||
<li class="dropdown">
|
||||
<a tabindex="-1" href="{{ .url }}">{{ .name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
<li class="dropdown-submenu">
|
||||
<a tabindex="-1" href="#">Αρχείο</a>
|
||||
<ul class="dropdown-menu">
|
||||
{{ range .Site.Data.main.links.historical }}
|
||||
<li><a tabindex="-1" href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
|
||||
</ul>
|
||||
</div><!-- /.navbar-collapse -->
|
||||
</nav>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<!-- menu items -->
|
||||
{{- $currentPage := . }}
|
||||
{{- range .Site.Menus.main }}
|
||||
{{- if .HasChildren }}
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expander="false">{{ .Name }}
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
{{ range .Children }}
|
||||
<li >
|
||||
<a class="dropdown-item" href="{{ .URL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>
|
||||
<a href="#" class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown">{{ .Name }}<b class="caret"></b></a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Σύνδεσμοι<b class="caret"></b></a>
|
||||
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
|
||||
{{ range .Site.Data.main.links.hellug }}
|
||||
<li>
|
||||
<a class="dropdown-item" tabindex="-1" href="{{ .url }}">{{ .name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><h6 class="dropdown-header">Αρχείο</button></h6></li>
|
||||
{{ range .Site.Data.main.links.historical }}
|
||||
<li><a class="dropdown-item" tabindex="-1" href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- /.navbar-collapse -->
|
||||
</nav>
|
||||
<header>
|
||||
|
|
16
themes/hellug-bootstrap/layouts/partials/scripts.html
Κανονικό αρχείο
16
themes/hellug-bootstrap/layouts/partials/scripts.html
Κανονικό αρχείο
|
@ -0,0 +1,16 @@
|
|||
<!-- Matomo -->
|
||||
<script>
|
||||
var _paq = window._paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="https://stats.hellug.gr/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', '1']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
|
5
themes/hellug-bootstrap/layouts/partials/welcome.html
Κανονικό αρχείο
5
themes/hellug-bootstrap/layouts/partials/welcome.html
Κανονικό αρχείο
|
@ -0,0 +1,5 @@
|
|||
{{- with .GetPage "pages/welcome" }}
|
||||
<h3>{{- .Title }}</h3>
|
||||
{{- .Content}}
|
||||
<hr>
|
||||
{{- end }}
|
6
themes/hellug-bootstrap/static/css/bootstrap.min.css
εξωτερικό
Κανονικό αρχείο
6
themes/hellug-bootstrap/static/css/bootstrap.min.css
εξωτερικό
Κανονικό αρχείο
Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες
1
themes/hellug-bootstrap/static/css/bootstrap.min.css.map
Κανονικό αρχείο
1
themes/hellug-bootstrap/static/css/bootstrap.min.css.map
Κανονικό αρχείο
Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες
160
themes/hellug-bootstrap/static/css/hellug.css
Κανονικό αρχείο
160
themes/hellug-bootstrap/static/css/hellug.css
Κανονικό αρχείο
|
@ -0,0 +1,160 @@
|
|||
.dropdown-submenu{position:relative;}
|
||||
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
|
||||
.dropdown-submenu:hover>.dropdown-menu{display:block;}
|
||||
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
|
||||
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
|
||||
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
|
||||
|
||||
#main
|
||||
{
|
||||
}
|
||||
|
||||
#footer-wrapper
|
||||
{
|
||||
|
||||
}
|
||||
#fcolumn1
|
||||
{
|
||||
float:left;
|
||||
width:25%;
|
||||
margin-left:300px;
|
||||
}
|
||||
|
||||
#fcolumn2
|
||||
{
|
||||
|
||||
width:25%;
|
||||
}
|
||||
|
||||
#fcolumn3
|
||||
{
|
||||
float:right;
|
||||
width:25%;
|
||||
margin-right:600px;
|
||||
}
|
||||
|
||||
|
||||
#column1
|
||||
{
|
||||
float:left;
|
||||
min-width:400px;
|
||||
width:70%;
|
||||
margin-left:1%;
|
||||
}
|
||||
#column2
|
||||
{
|
||||
float:right;
|
||||
min-width:250px;
|
||||
width:27%;
|
||||
margin-right:1%;
|
||||
}
|
||||
|
||||
.footer
|
||||
{
|
||||
margin-top:5px;
|
||||
padding-top:5px;
|
||||
border-top:1px solid rgb(66, 139, 202);
|
||||
color:rgb(58, 135, 173);
|
||||
clear:both;
|
||||
background:rgb(217, 237, 247);
|
||||
margin-bottom: 0px;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
|
||||
div.footer ul.site-map ul {
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
div.footer ul.site-map {
|
||||
margin-left: 50px;
|
||||
vertical-align: top;
|
||||
|
||||
}
|
||||
|
||||
div.footer ul.site-map > li{
|
||||
display: inline-block;
|
||||
list-style: none;
|
||||
vertical-align: top;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
div.footer ul.site-map ul li {
|
||||
/* 2nd+ level */
|
||||
list-style: none;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.infobar
|
||||
{
|
||||
padding-top:1px;
|
||||
color:rgb(255,255,255);
|
||||
text-align: right;
|
||||
background:rgb(217, 237, 247);
|
||||
margin-bottom: 0px;
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.navbar
|
||||
{
|
||||
font-family: arial, sans-serif;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.carousel-control
|
||||
{
|
||||
opacity:0;
|
||||
text-shadow:;
|
||||
}
|
||||
|
||||
#content-area
|
||||
{
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
span.article-date {
|
||||
font-size: 75%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h3 span.article-date
|
||||
{
|
||||
float:right;
|
||||
display: inline;
|
||||
padding: .2em .6em .3em;
|
||||
line-height: 1;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: baseline;
|
||||
border-radius: .25em;
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
li span.article-date {
|
||||
color: rgb(112, 112, 240);
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
/* responsive layout */
|
||||
|
||||
@media screen and (max-width: 860px) {
|
||||
#column1
|
||||
{
|
||||
float:none;
|
||||
min-width:320px;
|
||||
width:auto;
|
||||
|
||||
}
|
||||
#column2
|
||||
{
|
||||
float:none;
|
||||
min-width:180px;
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
7
themes/hellug-bootstrap/static/js/bootstrap.bundle.min.js
εξωτερικό
Κανονικό αρχείο
7
themes/hellug-bootstrap/static/js/bootstrap.bundle.min.js
εξωτερικό
Κανονικό αρχείο
Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες
6
themes/hellug-bootstrap/static/js/bootstrap.min.js
εξωτερικό
Κανονικό αρχείο
6
themes/hellug-bootstrap/static/js/bootstrap.min.js
εξωτερικό
Κανονικό αρχείο
Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες
Φόρτωση…
Προσθήκη πίνακα
Προσθήκη υπερσυνδέσμου
Παράθεση σε νέο ζήτημα