Αναβάθμιση του site σε bootstrap 5 #57

Συγχωνευμένο
infl00p συγχώνευσε 11 υποβολές από staging σε master 2024-02-09 14:57:16 +00:00
88 αρχεία άλλαξαν με 1095 προσθήκες και 1658 διαγραφές

@ -6,10 +6,6 @@ date: 2012-08-24
category_title: Σύλλογος category_title: Σύλλογος
tags: [Καλώς Ήλθατε] tags: [Καλώς Ήλθατε]
peri-hellug: [welcome-1] peri-hellug: [welcome-1]
menu:
main:
parent: "peri-hellug"
weight: 1
--- ---
Η Ένωση Χρηστών και Φίλων Linux Ελλάδας (Ε.Χ.Φ.Λ.Ε.) Hellenic Linux Users Group (HEL.L.U.G.), είναι ένα ΜΗ Κερδοσκοπικό Σωματείο, ιδρυμένο το 1998, με σκοπό την προώθηση του Linux και του Ελεύθερου Λογισμικού / Λογισμικού Ανοικτού Κώδικα (ΕΛ/ΛΑΚ) αλλά και γενικότερα της φιλοσοφίας που το διέπει. Η Ένωση Χρηστών και Φίλων Linux Ελλάδας (Ε.Χ.Φ.Λ.Ε.) Hellenic Linux Users Group (HEL.L.U.G.), είναι ένα ΜΗ Κερδοσκοπικό Σωματείο, ιδρυμένο το 1998, με σκοπό την προώθηση του Linux και του Ελεύθερου Λογισμικού / Λογισμικού Ανοικτού Κώδικα (ΕΛ/ΛΑΚ) αλλά και γενικότερα της φιλοσοφίας που το διέπει.

BIN
static/media/tux-feet.png Κανονικό αρχείο

Το δυαδικό αρχείο δεν εμφανίζεται.

Μετά

Πλάτος:  |  Ύψος:  |  Μέγεθος: 3,4 KiB

11
static/static/css/bootstrap.min.css εξωτερικό

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

1
static/static/js/htmx.min.js εξωτερικό Κανονικό αρχείο

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

@ -1,91 +1,94 @@
{{ partial "head.html" . }} {{ partial "head.html" . }}
<!-- Header Start --> <!-- Header Start -->
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{ if .Params.bannertemplate }}
{{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{else}} {{else}}
{{ partial "hellug-banner.html" . }} {{ partial "hellug-banner.html" . }}
{{end}} {{end}}
</div> </div>
<div id="column1"> {{ partial "breadcrump.html"}}
{{.Content}} <main>
<div class="container">
<div class="row">
<div class="col-md-9">
{{.Content}}
<!-- Articles Section --> <!-- Articles Section -->
<div class="well well-lg"> {{ $articlelimit := 5 }}
{{ $articlelimit := 5 }} {{ $articlenum := len .Pages }}
{{ $articlenum := len .Pages }} {{ $counter := 0 }}
{{ $counter := 0 }} {{ $recentpostlimit := (sub now.Unix 31536000 ) }}
{{ $recentpostlimit := (sub now.Unix 31536000 ) }} {{ range first $articlelimit .Pages }}
{{ range first $articlelimit .Pages }} {{ $counter = add $counter 1 }}
{{ $counter = add $counter 1 }} {{ if eq $counter 1 }}
{{ if eq $counter 1 }} <!-- First Post -->
<!-- First Post --> <div class="card card-primary">
<div class="panel panel-primary"> <div class="card-header">
<div class="panel-heading"> <h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> {{ if lt $recentpostlimit .Date.Unix }}
{{ if lt $recentpostlimit .Date.Unix }} <span class="label label-default">ο</span></h3>
<span class="label label-default">ο</span></h3> {{ end }}
{{ end }} </div>
</div> <div class="card-body">
<div class="panel-body"> {{ .Summary }}
{{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
</p> </p>
</div> </div>
</div> </div>
<!-- First Post End --> <!-- First Post End -->
{{else}} {{else}}
<div class="panel panel-default"> <div class="card card-default">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
{{ if lt $recentpostlimit .Date.Unix }} {{ if lt $recentpostlimit .Date.Unix }}
<span class="label label-default">ο</span></h3> <span class="label label-default">ο</span></h3>
{{ end }} {{ end }}
</div> </div>
<div class="panel-body"> <div class="card-body">
{{ .Summary }} {{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
</p> </p>
</div> </div>
</div> </div>
{{ end }} {{ end }}
{{ end }} {{ end }}
<!-- End Articles Section --> <!-- End Articles Section -->
{{ if gt $articlenum $articlelimit }} {{ if gt $articlenum $articlelimit }}
<!-- Older Articles Summary --> <!-- Older Articles Summary -->
<div class="panel panel-default"> <div class="card card-default">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title">Παλαιότερα άρθρα</a> <h3 class="card-title">Παλαιότερα άρθρα</a>
</div> </div>
<div class="panel-body"> <div class="card-body">
<ul> <ul>
{{ range after 10 .Pages }} {{ range after 10 .Pages }}
<li><a href="{{.Permalink}}">{{ .Title }}</a> <li><a href="{{.Permalink}}">{{ .Title }}</a>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
{{ end }} {{ end }}
</ul> </ul>
</div> </div>
</div> </div>
<!-- End Older Articles --> <!-- End Older Articles -->
{{ end }} {{ end }}
</div></div> </div>
</div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -3,15 +3,21 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div> </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> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
<ul class="list-inline"> <ul class="list-inline">
{{ if .Params.meetupdate }} {{ if .Params.meetupdate }}
@ -24,17 +30,17 @@
<li class="list-inline-item"><b>🏛</b> {{ .Params.meetuplocation }}</li> <li class="list-inline-item"><b>🏛</b> {{ .Params.meetuplocation }}</li>
{{ end }} {{ end }}
</ul> </ul>
<div id="content-area">
{{.Content}} {{.Content | safeHTML }}
</div>
</div> </div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -3,28 +3,33 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div> </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> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
<div id="content-area">
{{.Content | safeHTML }}
</div>
{{.Content}}
</div></div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -2,34 +2,30 @@
<!-- Header Start --> <!-- Header Start -->
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="container center mt-3 mb-3">
<div class="pagewrap">
{{ if .Params.bannertemplate }} {{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{else}} {{else}}
{{ partial "hellug-banner.html" . }} {{ partial "hellug-banner.html" . }}
{{end}} {{end}}
</div>
<div id="column1"> {{ partial "breadcrump.html"}}
<div style="padding-left:10px;">
<div class="section">
{{ partial "breadcrump.html"}}
<main>
<div class="container">
<div class="row">
<div class="col-md-9">
<h1 class="title">{{ .Title }}</h1> <h1 class="title">{{ .Title }}</h1>
<hr> <hr>
<div id="content-area">
{{.Content}} {{.Content}}
</div>
</div>
</div>
</div>
</div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
<main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -3,21 +3,30 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <main>
<div align="center" style="margin:4px;"> <div class="container center mt-3 mb-3">
{{ partial .Params.bannertemplate . }} {{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div> </div>
<div id="column1"> <div class="container mt-3 mb-3">
<div class="row">
<div class="col-md-9">
{{.Content}} {{.Content}}
</div></div> </div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -3,34 +3,40 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{ if .Params.bannertemplate }}
{{ partial "hellug-banner.html" . }} {{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div> </div>
<div id="column1"> {{ partial "breadcrump.html"}}
<main>
<div class="container">
<div class="row">
<div class="col-md-9">
{{.Content}} {{.Content}}
<!-- Articles Section --> <!-- Articles Section -->
<div class="well well-lg">
{{ $articlelimit := 5 }} {{ $articlelimit := 5 }}
{{ $articlenum := len .Pages }} {{ $articlenum := len .Pages }}
{{ $counter := 0 }} {{ $counter := 0 }}
{{ $lastyear := (sub now.Unix 31536000 ) }} {{ $recentpostlimit := (sub now.Unix 31536000 ) }}
{{ range first $articlelimit .Pages }} {{ range first $articlelimit .Pages }}
{{ $counter = add $counter 1 }} {{ $counter = add $counter 1 }}
{{ if eq $counter 1 }} {{ if eq $counter 1 }}
<!-- First Post --> <!-- First Post -->
<div class="panel panel-primary"> <div class="card card-primary">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> <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">ο</span></h3> <span class="label label-default">ο</span></h3>
{{ end }} {{ end }}
</div> </div>
<div class="panel-body"> <div class="card-body">
{{ .Summary }} {{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
@ -39,15 +45,15 @@
</div> </div>
<!-- First Post End --> <!-- First Post End -->
{{else}} {{else}}
<div class="panel panel-default"> <div class="card card-default">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> <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">ο</span></h3> <span class="label label-default">ο</span></h3>
{{ end }} {{ end }}
</div> </div>
<div class="panel-body"> <div class="card-body">
{{ .Summary }} {{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
</p> </p>
@ -57,13 +63,13 @@
{{ end }} {{ end }}
<!-- End Articles Section --> <!-- End Articles Section -->
<!-- Older Articles Summary -->
{{ if gt $articlenum $articlelimit }} {{ if gt $articlenum $articlelimit }}
<div class="panel panel-default"> <!-- Older Articles Summary -->
<div class="panel-heading"> <div class="card card-default">
<h3 class="panel-title">Παλαιότερα άρθρα</a> <div class="card-header">
<h3 class="card-title">Παλαιότερα άρθρα</a>
</div> </div>
<div class="panel-body"> <div class="card-body">
<ul> <ul>
{{ range after 10 .Pages }} {{ range after 10 .Pages }}
<li><a href="{{.Permalink}}">{{ .Title }}</a> <li><a href="{{.Permalink}}">{{ .Title }}</a>
@ -72,16 +78,17 @@
</ul> </ul>
</div> </div>
</div> </div>
{{ end }}
<!-- End Older Articles -->
</div></div> <!-- End Older Articles -->
{{ end }}
</div> </div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -1,87 +1,94 @@
{{ partial "head.html" . }} {{ partial "head.html" . }}
<!-- Header Start --> <!-- Header Start -->
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{ if .Params.bannertemplate }}
{{ partial "hellug-banner.html" . }} {{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div> </div>
<div id="column1"> {{ partial "breadcrump.html"}}
{{.Content}} <main>
<div class="container">
<div class="row">
<div class="col-md-9">
{{.Content}}
<!-- Articles Section --> <!-- Articles Section -->
<div class="well well-lg"> {{ $articlelimit := 5 }}
{{ $articlelimit := 5 }} {{ $articlenum := len .Pages }}
{{ $articlenum := len .Pages }} {{ $counter := 0 }}
{{ $counter := 0 }} {{ $recentpostlimit := (sub now.Unix 31536000 ) }}
{{ $lastyear := (sub now.Unix 31536000 ) }} {{ range first $articlelimit .Pages }}
{{ range first $articlelimit .Pages }} {{ $counter = add $counter 1 }}
{{ $counter = add $counter 1 }} {{ if eq $counter 1 }}
{{ if eq $counter 1 }} <!-- First Post -->
<!-- First Post --> <div class="card border-primary mb-3">
<div class="panel panel-primary"> <div class="card-header">
<div class="panel-heading"> <h4 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h4>
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> {{ if lt $recentpostlimit .Date.Unix }}
{{ if lt $lastyear .Date.Unix }} <span class="badge bg-secondary">ο</span>
<span class="label label-default">ο</span></h3> {{ end }}
{{ end }} </div>
</div> <div class="card-body">
<div class="panel-body"> {{ .Summary }}
{{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
</p> </p>
</div> </div>
</div> </div>
<!-- First Post End --> <!-- First Post End -->
{{else}} {{else}}
<div class="panel panel-default"> <div class="card card-default mb-2">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <h4 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h4>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> <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">ο</span></h3> <span class="badge bg-secondary">ο</span>
{{ end }} {{ end }}
</div> </div>
<div class="panel-body"> <div class="card-body">
{{ .Summary }} {{ .Summary }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> <p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a>
</p> </p>
</div> </div>
</div> </div>
{{ end }} {{ end }}
{{ end }} {{ end }}
<!-- End Articles Section --> <!-- End Articles Section -->
<!-- Older Articles Summary --> {{ if gt $articlenum $articlelimit }}
{{ if gt $articlenum $articlelimit }} <!-- Older Articles Summary -->
<div class="panel panel-default"> <div class="card card-default">
<div class="panel-heading"> <div class="card-header">
<h3 class="panel-title">Παλαιότερα άρθρα</a> <h3 class="card-title">Παλαιότερα άρθρα</a>
</div> </div>
<div class="panel-body"> <div class="card-body">
<ul> <ul>
{{ range after 10 .Pages }} {{ range after 10 .Pages }}
<li><a href="{{.Permalink}}">{{ .Title }}</a> <li><a href="{{.Permalink}}">{{ .Title }}</a>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li> <span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> </li>
{{ end }} {{ end }}
</ul> </ul>
</div> </div>
</div> </div>
{{ end }}
<!-- End Older Articles -->
</div></div> <!-- End Older Articles -->
</div> {{ end }}
</div>
<!-- Column 2 start --> <!-- Column 2 start -->
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -1,68 +1,71 @@
{{ partial "head.html" . }} {{- partial "head.html" . }}
{{ partial "header.html" . }} {{- partial "header.html" . }}
<div class="pagewrap"> <div class="container center mt-3 mb-3">
<div align="center" style="margin:4px;"> {{- partial "carousel.html" . }}
{{ partial "carousel.html" . }}
</div> </div>
<div id="column1"> <!-- welcome -->
<div class="container">
{{.Content}} {{- partial "welcome.html" . }}
<!-- 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">ο</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>
</div> </div>
<!-- First Post End --> <!-- welcome end -->
{{ else }}
<div class="panel panel-default"> <main>
<div class="panel-heading"> <div class="container">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a> <div class="row">
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span> <!-- Articles Section -->
{{ if lt $recentpostlimit .Date.Unix }} <div class="col-md-9">
<span class="label label-default">ο</span></h3> {{- $counter := 0 }}
{{ end }} {{- $pages := .Site.RegularPages }}
</div> {{- $recentpostlimit := (sub now.Unix 2592000 ) }}
<div class="panel-body"> {{- range first 5 $pages }}
{{ .Summary }} {{- $counter = add $counter 1 }}
<p><a href="{{.Permalink}}" class="btn btn-primary btn-sm"><span class="glyphicon glyphicon-zoom-in"></span>Περισσότερα...</a> {{- if eq $counter 1 }}
</p> <!-- First Post -->
</div> <div class="card border-primary mb-3">
</div> <div class="card-header">
{{ end}} <h3 class="card-title"><a href="{{.Permalink}}">{{ .Title }}</a></h3>
<small>{{- dateFormat "02/01/2006" .Date }}</small>
{{ if lt $recentpostlimit .Date.Unix }}
{{ end }} <span class="badge bg-secondary">ο</span>
{{ end }}
<!-- End Articles Section --> </div>
</div></div> <div class="card-body">
<p class="card-text">
<!-- Column 2 start --> {{- .Summary | plainify | safeHTML }}
{{ partial "column2.html" . }} </p>
<!-- Column 2 end --> <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">ο</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> </div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- 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 --> <div class="item active"><!-- class of active since it's the first item -->
<img src="media/carousel1.png" > <img class="img-fluid" alt="HEL.L.U.G Ένωση Χρηστών και Φίλων Λίνουξ Ελλαδας" src="media/carousel1.png" >
</div>
<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">&lsaquo;</a>
<a class="carousel-control right" href="index.html#this-carousel-id" data-slide="next">&rsaquo;</a>
</div><!-- /.carousel -->

@ -1,71 +1,72 @@
<div id="column2"> <div class="col-md-3">
<div class="well well-lg" align="center"> <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> <span class="list-group-item active">HEL.L.U.G Meetups!</span>
{{ $counter := 0 }} {{- $counter := 0 }}
{{ range first 3 (index .Site.Taxonomies.draseis "meetups") }} {{- range first 3 (index .Site.Taxonomies.draseis "meetups") }}
{{ if .Params.meetupdate }} {{- if .Params.meetupdate }}
{{ $meetuptime := time .Params.meetupdate }} {{- $meetuptime := time .Params.meetupdate }}
{{ $meetuptimeunix := add $meetuptime.Unix 86400 }} {{- $meetuptimeunix := add $meetuptime.Unix 86400 }}
{{ if ge $meetuptimeunix now.Unix }} {{- if ge $meetuptimeunix now.Unix }}
{{ $counter = add $counter 1 }} {{- $counter = add $counter 1 }}
<a class="list-group-item" href="{{ .Permalink}}"> <a class="list-group-item" href="{{ .Permalink}}">
<span class="label label-default">ο</span> <span class="label label-default">ο</span>
{{ dateFormat "02/01/2006" $meetuptime }} - {{ .Params.meetuplocation }} {{ 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">ο</span>
{{ end }}
{{ dateFormat "02/01/2006" $eventtime }} - {{ .Title }}
</a> </a>
{{ end }} {{- end }}
{{ end }} {{- end }}
{{ end }} {{- end }}
{{ if eq $counter 0 }} {{- if eq $counter 0 }}
<a class="list-group-item">Δεν υπάρχουν</a> <a class="list-group-item">Δεν υπάρχουν</a>
{{ end }} {{- end }}
</div> </div>
<div class="panel panel-info"> <div class="list-group mb-4">
<div class="panel-heading"> <span class="list-group-item active"> Εκδηλώσεις </span>
<h3 class="panel-title">HEL.L.U.G. Sites</h3> {{- $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">ο</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>
<div class="panel-body" align="left">
<ul class="nav">
{{ range .Site.Data.sidebar.links.hellug }} {{- range .Site.Data.sidebar.links.hellug }}
<li class="nav-item"><a href={{ .url }}><button type="button" class="btn btn-link">{{ .name }}</button></a></li> <div class="list-group-item">
{{ end }} <a class="dropdown-item" href={{ .url }}>{{ .name }}</a>
</ul> </div>
{{- end }}
</div> </div>
</div> <div class="card card-info">
<div class="panel panel-info"> <div class="card-header">
<div class="panel-heading"> <h4 class="card-title">Ακολουθήστε τον HEL.L.U.G.</h4>
<h3 class="panel-title">Ακολουθήστε τον HEL.L.U.G.</h3>
</div> </div>
<div class="panel-body" align="left"> <div class="card-body" align="left">
<div class="btn-group"> <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 src="/media/Twitter.png">Twitter</button></a> <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 src="/media/LinkedIn.png">LinkedIn</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 src="/media/Facebook.png">Facebook</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> </div>
</div> </div>
</div>

@ -1,49 +1,38 @@
<div class="footer" > <footer class="bd-footer py-1 py-md-2 mt-2 bg-body-tertiary">
<ul class="site-map"> <div class="container sticky-bottom py-1 py-md-2 px-3 px-md-3 text-body-secondary">
{{ $currentPage := . }} <div class="row">
{{ range .Site.Menus.main }} {{- $currentPage := . }}
{{ if .HasChildren }} {{- range .Site.Menus.main }}
<li><div>{{ .Name }}</div> {{- if .HasChildren }}
<ul> <div class="col">
{{ range .Children }} <ul class="list-unstyled list-group-flush">
<li><a href="{{ .URL }}">{{ .Name }}</a></li> {{- .Name }}
{{ end }} {{- range .Children }}
</ul> <li class="list-group-item"><a href="{{ .URL }}">{{ .Name }}</a></li>
</li> {{- end }}
{{ 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 }}
</ul> </ul>
</li> </div>
</ul> {{ 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>
<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> </div>
<p class="text-end lh-1 fw-lighter">
<small><a href="/credits">Συντελεστές Ιστοσελίδας</a></small>
</p>
<!-- Scripts -->
{{- partial "scripts.html" . }}
<!-- Scripts end -->
</footer>
</body> </body>
</html> </html>

@ -1,20 +1,19 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <html lang="el" data-bs-theme="auto">
<head> <head>
<base href="">
<title>{{ .Title }} | HELLUG </title> <title>{{ .Title }} | HELLUG </title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> <meta charset="utf-8" >
<meta name="robots" content="index, follow" /> <meta name="robots" content="index, follow" >
<meta name="description" content="Hellug Official" /> <meta name="description" content="Hellug Official Website" >
<meta name="keywords" content="Hellug" /> <meta name="keywords" content="Hellug" >
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap --> <!-- Bootstrap -->
<link href="/static/css/bootstrap.min.css" rel="stylesheet" /> <link href="/css/bootstrap.min.css" rel="stylesheet" />
<link href="/static/css/hellug.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>
{{ range .AlternativeOutputFormats -}} {{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}} {{ end -}}
<base href="">
</head> </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"> <div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Brand and toggle get grouped for better mobile display --> <ul class="navbar-nav me-auto mb-2 mb-lg-0">
<!-- menu items -->
<div class="navbar-header"> {{- $currentPage := . }}
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> {{- range .Site.Menus.main }}
<span class="sr-only">Toggle navigation</span> {{- if .HasChildren }}
<span class="icon-bar"></span> <li class="nav-item dropdown">
<span class="icon-bar"></span> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expander="false">{{ .Name }}
<span class="icon-bar"></span> </a>
</button> <ul class="dropdown-menu">
<a class="navbar-brand" href="/"><span class="glyphicon glyphicon-home"></span></a> {{ range .Children }}
</div> <li >
<a class="dropdown-item" href="{{ .URL }}">{{ .Name }}</a>
<!-- Collect the nav links, forms, and other content for toggling --> </li>
<div class="collapse navbar-collapse navbar-ex1-collapse"> {{ end }}
<ul class="nav navbar-nav"> </ul>
<!-- menu items --> </li>
{{ $currentPage := . }} {{ else }}
{{ range .Site.Menus.main }} <li>
{{ if .HasChildren }} <a href="#" class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown">{{ .Name }}<b class="caret"></b></a>
<li class="dropdown"> </li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ .Name }}<b class="caret"></b></a> {{ end }}
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"> {{ end }}
{{ range .Children }} <li class="nav-item dropdown">
<li class="dropdown"> <a href="#" class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Σύνδεσμοι<b class="caret"></b></a>
<a tabindex="-1" href="{{ .URL }}">{{ .Name }}</a> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
</li> {{ range .Site.Data.main.links.hellug }}
{{ end }} <li>
</ul> <a class="dropdown-item" tabindex="-1" href="{{ .url }}">{{ .name }}</a>
</li> </li>
{{ else }} {{ end }}
<li> <li><hr class="dropdown-divider"></li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ .Name }}<b class="caret"></b></a> <li><h6 class="dropdown-header">Αρχείο</button></h6></li>
</li> {{ range .Site.Data.main.links.historical }}
{{ end }} <li><a class="dropdown-item" tabindex="-1" href="{{ .url }}">{{ .name }}</a></li>
{{ end }} {{ end }}
<!-- menu items end --> </ul>
<!-- DISABLED </li>
<li class="dropdown"> </ul>
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> Linux<b class="caret"></b></a> </div>
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"> </div><!-- /.navbar-collapse -->
<li class="dropdown"> </nav>
<a tabindex="-1" href="/p/ti-einai-to-linux">Τι είναι;</a> <header>
</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>

@ -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 -->

@ -0,0 +1,5 @@
{{- with .GetPage "pages/welcome" }}
<h3>{{- .Title }}</h3>
{{- .Content}}
<hr>
{{- end }}

6
themes/hellug-bootstrap/static/css/bootstrap.min.css εξωτερικό Κανονικό αρχείο

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

7
themes/hellug-bootstrap/static/js/bootstrap.bundle.min.js εξωτερικό Κανονικό αρχείο

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

@ -1,9 +0,0 @@
{{ partial "head.html" . }}
<div>
<img src="/media/sad-tux.png">
<h2>404 Η σελίδα δε βρέθηκε - Page not found</h2>
<p>Αν βρεθήκατε εδώ αφού ακολουθήσατε κάποιο σύνδεσμο παρακαλούμε επικοινωνήστε με τους διαχειριστές της ιστοσελίδας μέσω του <a href="https://forum.hellug.gr">forum</a> του Hellug και ενημερώστε μας για το περιεχόμενο που λείπει</p>
<p>If you came here by following a link please contact the site admins within the <a href="https://forum.hellug.gr">forum</a> of Hellug to inform us of the missing content</p>
<h1><a href="{{ "" | relURL }}">Αρχική - Home</a></h1>
</div>

@ -1,41 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial .Params.bannertemplate . }}
</div>
<div id="column1">
{{ partial "breadcrump.html"}}
<h1 class="title">{{ .Title }}</h1>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
<ul class="list-inline">
{{ if .Params.eventdate }}
<li class="list-inline-item"><b>📅</b> {{ dateFormat "Monday" .Params.eventdate }}</li>
{{ end }}
{{ if .Params.eventdate }}
<li class="list-inline-item"><b></b> {{ dateFormat "15:04" .Params.eventdate }}</li>
{{ end }}
{{ if .Params.eventlocation }}
<li class="list-inline-item"><b>🏛</b> {{ .Params.eventlocation }}</li>
{{ end }}
</ul>
<div id="content-area">
{{.Content}}
</div></div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,8 +0,0 @@
!{{ .Title }}
{{ .RawContent }}
{{ range .Pages.ByPublishDate.Reverse }}
0{{ .Title }} {{ replace .RelPermalink "/gopher" "" 1}} hellug.gr 70
{{ end }}

@ -1,91 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div>
<div id="column1">
{{.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">ο</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>
<!-- 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">ο</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 -->
{{ 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>
<!-- End Older Articles -->
{{ end }}
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,40 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial .Params.bannertemplate . }}
</div>
<div id="column1">
{{ partial "breadcrump.html"}}
<h1 class="title">{{ .Title }}</h1>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
<ul class="list-inline">
{{ if .Params.meetupdate }}
<li class="list-inline-item"><b>📅</b> {{ dateFormat "Monday" .Params.meetupdate }}</li>
{{ end }}
{{ if .Params.meetupdate }}
<li class="list-inline-item"><b></b> {{ dateFormat "15:04" .Params.meetupdate }}</li>
{{ end }}
{{ if .Params.meetuplocation }}
<li class="list-inline-item"><b>🏛</b> {{ .Params.meetuplocation }}</li>
{{ end }}
</ul>
<div id="content-area">
{{.Content}}
</div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,30 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial .Params.bannertemplate . }}
</div>
<div id="column1">
{{ partial "breadcrump.html"}}
<h1 class="title">{{ .Title }}</h1>
<span class="article-date">{{ dateFormat "02/01/2006" .Date }}</span><hr>
<div id="content-area">
{{.Content}}
</div></div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,30 +0,0 @@
# {{ .Title }}{{ $scratch := newScratch }}
{{ $content := .RawContent -}}
{{ $content := $content | replaceRE `</tr>` "\n" -}}
{{ $content := $content | replaceRE `<br/??>` "\n" -}}
{{ $content := $content | replaceRE `<br??/??>` "\n" -}}
{{ $content := $content | replaceRE `<a .*href="(.+?)".*>(.+?)</a>` "[$2]($1)" -}}
{{ $content := $content | plainify -}}
{{ $content := $content | replaceRE `#### ` "### " -}}
{{ $content := $content | replaceRE `\n- (.+?)` "\n* $1" -}}
{{ $content := $content | replaceRE `\n(\d+). (.+?)` "\n* $2" -}}
{{ $content := $content | replaceRE `\[\^(.+?)\]:?` "" -}}
{{ $content := $content | replaceRE `\sgemini://(\S*)` " [gemini://$1](gemini://$1)" -}}
{{ $content := $content | replaceRE "([^`])<.*?>([^`])" "$1$2" -}}
{{ $content := $content | replaceRE `\n\n!\[.*\]\((.+?) \"(.+?)\"\)` "\n\n=> $1 Image: $2" -}}
{{ $content := $content | replaceRE `\n\n!\[.*]\((.+?)\)` "\n\n=> $1 Embedded Image: $1" -}}
{{ $links := findRE `\n=> ` $content }}{{ $scratch.Set "ref" (add (len $links) 1) }}
{{ $refs := findRE `\[.+?\]\(.+?\)` $content }}
{{ $scratch.Set "content" $content }}{{ range $refs }}{{ $ref := $scratch.Get "ref" }}{{ $contentInLoop := $scratch.Get "content" }}{{ $url := (printf "%s #%d" . $ref) }}{{ $contentInLoop := replace $contentInLoop . $url -}}{{ $scratch.Set "content" $contentInLoop }}{{ $scratch.Set "ref" (add $ref 1) }}{{ end }}{{ $content := $scratch.Get "content" | replaceRE `\[(.+?)\]\((.+?)\) #(\d+)` "$1 [$3]" -}}
{{ $content | safeHTML }}
{{ $scratch.Set "ref" (add (len $links) 1) }}{{ if $refs }}
## Παραπομπές
{{ range $refs }}{{ $ref := $scratch.Get "ref" }}{{ $url := (printf "%s #%d" . $ref) }}
=> {{ $url | replaceRE `\[(.+?)\]\((.+?)\) #(\d+)` "$2 [$3] $1 ($2)" -}}
{{ $scratch.Set "ref" (add $ref 1) }}{{ end}}
---{{end}}
=> / Αρχική
=> https://www.hellug.gr{{ replace (replace .RelPermalink "/gemini" "" 1) "index.gmi" "" }} Έκδοση HTML - Web Page

@ -1,35 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
{{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
<div id="column1">
<div style="padding-left:10px;">
<div class="section">
{{ partial "breadcrump.html"}}
<h1 class="title">{{ .Title }}</h1>
<hr>
<div id="content-area">
{{.Content}}
</div>
</div>
</div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,33 +0,0 @@
# {{ .Title }} - {{ dateFormat "02/01/2006" .Date }}{{ $scratch := newScratch }}
{{ $content := .RawContent -}}
{{ $content := $content | replaceRE "<br/??>" "\n" -}}
{{ $content := $content | replaceRE "<br??/??>" "\n" -}}
{{ $content := $content | replaceRE "<tr>" "\n" -}}
{{ $content := $content | replaceRE `<a .*href="(.+?)".*>(.+?)</a>` "[$2]($1)" -}}
{{ $content := $content | plainify -}}
{{ $content := $content | replaceRE `#### ` "### " -}}
{{ $content := $content | replaceRE `\n- (.+?)` "\n* $1" -}}
{{ $content := $content | replaceRE `\n(\d+). (.+?)` "\n* $2" -}}
{{ $content := $content | replaceRE `\[\^(.+?)\]:?` "" -}}
{{ $content := $content | replaceRE `\sgemini://(\S*)` " [gemini://$1](gemini://$1)" -}}
{{ $content := $content | replaceRE `([^"])<.*?>([^"])` "$1$2" -}}
{{ $content := $content | replaceRE `\n\n!\[.*\]\((.+?) \"(.+?)\"\)` "\n\n=> $1 Image: $2" -}}
{{ $content := $content | replaceRE `\n\n!\[.*]\((.+?)\)` "\n\n=> $1 Embedded Image: $1" -}}
{{ $links := findRE "\n=> " $content }}{{ $scratch.Set "ref" (add (len $links) 1) }}
{{ $refs := findRE `\[.+?\]\(.+?\)` $content }}
{{ $scratch.Set "content" $content }}{{ range $refs }}{{ $ref := $scratch.Get "ref" }}{{ $contentInLoop := $scratch.Get "content" }}{{ $url := (printf "%s #%d" . $ref) }}{{ $contentInLoop := replace $contentInLoop . $url -}}{{ $scratch.Set "content" $contentInLoop }}{{ $scratch.Set "ref" (add $ref 1) }}{{ end }}{{ $content := $scratch.Get "content" | replaceRE `\[(.+?)\]\((.+?)\) #(\d+)` "$1 [$3]" -}}
{{ $content | safeHTML }}
---
{{ $scratch.Set "ref" (add (len $links) 1) }}{{ if $refs }}
## Παραπομπές
{{ range $refs }}{{ $ref := $scratch.Get "ref" }}{{ $url := (printf "%s #%d" . $ref) }}
=> {{ $url | replaceRE `\[(.+?)\]\((.+?)\) #(\d+)` "$2 [$3] $1 ($2)" -}}
{{ $scratch.Set "ref" (add $ref 1) }}{{ end}}---{{end}}
{{ if .Next }}=> {{ replace .Next.RelPermalink "/gemini" "" 1}} ← Νεότερο: {{ dateFormat "02/01/2006" .Next.Date }} - {{ .Next.Title }}{{ end }}
{{ if .Prev -}}=> {{ replace .Prev.RelPermalink "/gemini" "" 1}} → Παλαιότερο: {{ dateFormat "02/01/2006" .Prev.Date }} - {{ .Prev.Title }}{{- end }}
=> / Αρχική
=> https://www.hellug.gr{{ replace (replace .RelPermalink "/gemini" "" 1) "index.gmi" "" }} Έκδοση HTML - Web Page

@ -1,4 +0,0 @@
# {{ .Title }}
{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}
{{ .RawContent }}

@ -1,23 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial .Params.bannertemplate . }}
</div>
<div id="column1">
{{.Content}}
</div></div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,87 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial "hellug-banner.html" . }}
</div>
<div id="column1">
{{.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">ο</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>
<!-- 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">ο</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 -->
<!-- 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 -->
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,36 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
{{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
<div id="column1">
<div style="padding-left:10px;">
<div class="section">
{{ partial "breadcrump.html"}}
<h1 class="title">{{ .Title }}</h1>
<hr>
<div id="content-area">
{{.Content}}
</div>
</div>
</div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,87 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial "hellug-banner.html" . }}
</div>
<div id="column1">
{{.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">ο</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>
<!-- 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">ο</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 -->
<!-- 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 -->
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,87 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial "hellug-banner.html" . }}
</div>
<div id="column1">
{{.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">ο</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>
<!-- 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">ο</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 -->
<!-- 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 -->
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,87 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ partial "hellug-banner.html" . }}
</div>
<div id="column1">
{{.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">ο</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>
<!-- 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">ο</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 -->
<!-- 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 -->
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,67 +0,0 @@
{{ partial "head.html" . }}
<!-- Header Start -->
{{ partial "header.html" . }}
<!-- Header End -->
<div class="pagewrap">
<div align="center" style="margin:4px;">
{{ if .Params.bannertemplate }}
{{ partial .Params.bannertemplate . }}
{{else}}
{{ partial "hellug-banner.html" . }}
{{end}}
</div>
<div id="column1">
{{.Content}}
<!-- Articles Section -->
<div class="well well-lg">
{{ $articlelimit := 10 }}
{{ $articlenum := len .Pages }}
{{ $lastyear := (sub now.Unix 31536000 ) }}
{{ range first $articlelimit .Pages }}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><a href="{{.Permalink}}">{{ .Title }}</a>
{{ if lt $lastyear .Date.Unix }}
<span class="label label-default">ο</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 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>
{{ end }}
</ul>
</div>
</div>
<!-- End Older Articles -->
{{ end }}
</div></div>
</div>
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
</div>
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,42 +0,0 @@
{{ partial "head.html" . }}
{{ partial "header.html" . }}
<!-- Main View -->
{{.Content}}
<!-- Articles Section -->
{{ $counter := 0 }}
{{ $pages := .Site.RegularPages }}
{{ $recentpostlimit := (sub now.Unix 2592000 ) }}
{{ range first 5 $pages }}
{{ $counter = add $counter 1 }}
{{ if eq $counter 1 }}
<!-- First Post -->
<h3>
<a href="{{.Permalink}}">{{ .Title }}</a> {{ dateFormat "02/01/2006" .Date }} {{ if lt $recentpostlimit .Date.Unix }}Nέο
{{ end }}
</h3>
<p>{{ .Summary | plainify | safeHTML }}</p>
<!-- First Post End -->
{{ else }}
<h3><a href="{{.Permalink}}">{{ .Title }}</a>
{{ dateFormat "02/01/2006" .Date }}
{{ if lt $recentpostlimit .Date.Unix }}
ο {{ end }}</h3>
<p>{{ .Summary }}</p>
{{ end}}
{{ end }}
<!-- End Articles Section -->
<!-- Column 2 start -->
{{ partial "column2.html" . }}
<!-- Column 2 end -->
<!-- Footer Start -->
{{ partial "footer.html" . }}
<!-- Footer End -->

@ -1,18 +0,0 @@
<!-- 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">&lsaquo;</a>
<a class="carousel-control right" href="index.html#this-carousel-id" data-slide="next">&rsaquo;</a>
</div><!-- /.carousel -->

@ -1,71 +0,0 @@
<div id="column2">
<div class="well well-lg" align="center">
<div class="list-group">
<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">ο</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">ο</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="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">HEL.L.U.G. Sites</h3>
</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>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Ακολουθήστε τον HEL.L.U.G.</h3>
</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>
</div>
</div>
</div>

@ -1,50 +0,0 @@
<div>
<ul>
{{ $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 }}
</ul>
</li>
</ul>
</div>
<div>
<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>
</body>
</html>

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<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 Homepage" />
<meta name="keywords" content="Hellug" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/css/hellug.css" rel="stylesheet" />
<script src="/static/js/bootstrap.min.js"></script>
{{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
</head>
<body>

@ -1,7 +0,0 @@
<a href="/">Home</a>
<!-- menu items -->
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<a tabindex="-1" href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
<!-- menu items end -->

@ -1 +0,0 @@
<img src="/media/hellug.png">

@ -1,11 +0,0 @@
name = "hellug-minimal"
license = "GPL-2"
description = "hellug minimal/compatible UI."
homepage = "https://dev.hellug.gr"
tags = ["blog","simple","responsive","minimal","tags","personal","clean","shortcodes"]
features = ["blog", "Clean and minimal", "Responsive", "Syntax highlighting",]
min_version = "0.41"
[author]
name = "Hellug Devs"
homepage = "https://dev.hellug.gr"

@ -1,12 +1,17 @@
{{ partial "head.html" . }} {{ partial "head.html" . }}
<header>
<!-- Header Start --> <!-- Header Start -->
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
</header>
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{ partial "breadcrump.html"}}
<main>
{{ partial "breadcrump.html"}}
<div class="row">
<div class="col">
<h1> {{ .Title }}</h1> <h1> {{ .Title }}</h1>
{{ dateFormat "02/01/2006" .Date }}<hr> {{ dateFormat "02/01/2006" .Date }}<hr>
<ul> <ul>
@ -20,13 +25,15 @@
<li><b>🏛</b> {{ .Params.eventlocation }}</li> <li><b>🏛</b> {{ .Params.eventlocation }}</li>
{{ end }} {{ end }}
</ul> </ul>
{{.Content}} {{.Content}}
</div>
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="col-3">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
<!-- Column 2 end --> </div>
<!-- Column 2 end -->
</div>
</main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<!-- Footer End --> <!-- Footer End -->

@ -11,8 +11,9 @@
</header> </header>
<main> <main>
<div class="master"> <div class="row">
<!-- Articles Section --> <!-- Articles Section -->
<div class="col">
{{- $articlelimit := 5 }} {{- $articlelimit := 5 }}
{{- $articlenum := len .Pages }} {{- $articlenum := len .Pages }}
{{- $counter := 0 }} {{- $counter := 0 }}
@ -53,9 +54,10 @@
{{ end }} {{ end }}
</section> </section>
</div> </div>
<div class="sidebar">
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="col-3">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
</div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</main> </main>

@ -4,10 +4,11 @@
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
{{ partial "header.html" . }} {{ partial "header.html" . }}
<!-- Header End --> <!-- Header End -->
{{ partial "breadcrump.html"}}
</header> </header>
<main> <main>
<div class="master"> {{ partial "breadcrump.html"}}
<div class="row">
<div class="col">
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
{{ dateFormat "02/01/2006" .Date }} {{ dateFormat "02/01/2006" .Date }}
<ul> <ul>
@ -24,12 +25,13 @@
<article> <article>
{{.Content}} {{.Content}}
</article> </article>
</div> </div>
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="sidebar"> <div class="col-3">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
</div> </div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div>
</main> </main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}

@ -7,18 +7,20 @@
<!-- Header End --> <!-- Header End -->
<main> <main>
{{ partial "breadcrump.html"}} {{ partial "breadcrump.html"}}
<div class="master"> <div class="row">
<!-- Article start --> <!-- Article start -->
<div class="col">
<h3>{{ .Title }}</h3> <h3>{{ .Title }}</h3>
{{- dateFormat "02/01/2006" .Date }} {{- dateFormat "02/01/2006" .Date }}
<article>{{.Content}} </article> <article>{{.Content}} </article>
</div> </div>
<!-- Article end --> <!-- Article end -->
<div class="sidebar"> <div class="col-3">
<!-- Column start --> <!-- Column start -->
{{- partial "column2.html" . }} {{- partial "column2.html" . }}
<!-- Column end --> <!-- Column end -->
</div> </div>
</div>
</main> </main>
<!-- Footer Start --> <!-- Footer Start -->
{{ partial "footer.html" . }} {{ partial "footer.html" . }}

@ -11,17 +11,19 @@
{{ partial "breadcrump.html"}} {{ partial "breadcrump.html"}}
<main> <main>
<div class="master"> <div class="row">
<!-- Content Start --> <!-- Content Start -->
<div class="col">
<h3>{{ .Title }}</h3> <h3>{{ .Title }}</h3>
<article> <article>
{{.Content}} {{.Content}}
</article> </article>
<!-- Content End -->
</div> </div>
<div class="sidebar"> <!-- Content End -->
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="col-3">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
</div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</main> </main>

@ -7,14 +7,16 @@
{{ partial .Params.bannertemplate . }} {{ partial .Params.bannertemplate . }}
</header> </header>
<main> <main>
<div class="master"> <div class="row">
<!-- Content Area start --> <!-- Content Area start -->
<div class="col">
{{.Content}} {{.Content}}
<!-- Content Area end -->
</div> </div>
<div class="sidebar"> <!-- Content Area end -->
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="col-3">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
</div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</main> </main>

@ -8,8 +8,10 @@
{{ partial "hellug-banner.html" . }} {{ partial "hellug-banner.html" . }}
<main> <main>
<div class="master"> <div class="col">
{{.Content}} <div class="row">
{{.Content}}
<!-- Articles Section --> <!-- Articles Section -->
{{ $articlelimit := 5 }} {{ $articlelimit := 5 }}
@ -56,9 +58,10 @@ Nέο</h3>
</section> </section>
</div> </div>
<div class="sidebar">
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="row">
{{ partial "column2.html" . }} {{ partial "column2.html" . }}
</div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</main> </main>

@ -1,17 +1,25 @@
{{- partial "head.html" . }} {{- partial "head.html" . }}
<header> <header>
{{- if .Params.bannertemplate }}
{{ if .Params.bannertemplate }} {{- partial .Params.bannertemplate . }}
{{ partial .Params.bannertemplate . }} {{- else}}
{{else}} {{- partial "hellug-banner.html" . }}
{{ partial "hellug-banner.html" . }} {{- end }}
{{end}}
{{- partial "header.html" . }} {{- partial "header.html" . }}
</header> </header>
<!-- Main View --> <!-- Main View -->
<main> <main>
<div class="master"> <!-- Welcome -->
{{- partial "welcome.html" . }}
<!-- Welcome end-->
<!-- Notice -->
{{- partial "notice.html" . }}
<!-- Notice end -->
<div class="row">
<!-- Articles Section --> <!-- Articles Section -->
<div class="col">
{{- $counter := 0 }} {{- $counter := 0 }}
{{- $pages := .Site.RegularPages }} {{- $pages := .Site.RegularPages }}
{{- $recentpostlimit := (sub now.Unix 2592000 ) }} {{- $recentpostlimit := (sub now.Unix 2592000 ) }}
@ -20,16 +28,17 @@
{{- if eq $counter 1 }} {{- if eq $counter 1 }}
<!-- First Post --> <!-- First Post -->
<h3><a href="{{.Permalink}}">{{ .Title }}</a></h3> <h3><a href="{{.Permalink}}">{{ .Title }}</a></h3>
<cite>{{- dateFormat "02/01/2006" .Date }}</aside> <cite>{{- dateFormat "02/01/2006" .Date }}
{{ if lt $recentpostlimit .Date.Unix }} {{- if lt $recentpostlimit .Date.Unix }}
<mark>ο</mark>{{- end }} <mark>ο</mark>
{{- end }}
</cite> </cite>
<article>{{ .Summary | plainify | safeHTML }} <article>{{- .Summary | plainify | safeHTML }}
</article> </article>
<!-- First Post End --> <!-- First Post End -->
{{- else }} {{- else }}
<h4><a href="{{.Permalink}}">{{ .Title }}</a></h4> <h4><a href="{{.Permalink}}">{{ .Title }}</a></h4>
<cite>{{- dateFormat "02/01/2006" .Date }}</aside> <cite>{{- dateFormat "02/01/2006" .Date }}
{{ if lt $recentpostlimit .Date.Unix }} {{ if lt $recentpostlimit .Date.Unix }}
<mark>ο</mark> <mark>ο</mark>
{{- end }} {{- end }}
@ -39,11 +48,12 @@
</article> </article>
{{- end}} {{- end}}
{{- end }} {{- end }}
</div>
<!-- End Articles Section --> <!-- End Articles Section -->
</div>
<div class="sidebar">
<!-- Column 2 start --> <!-- Column 2 start -->
<div class="col-2">
{{- partial "column2.html" . }} {{- partial "column2.html" . }}
</div>
<!-- Column 2 end --> <!-- Column 2 end -->
</div> </div>
</main> </main>

@ -0,0 +1 @@
<img alt="Μεγάλο λογότυπο της Ένωσης Χρηστών και Φίλων Λίνουξ Ελλάδας με τη μασκότ του Λίνουξ Τουξ να κρατά με το ράμφος μία ελληνική σημαία" src="media/carousel1.png" >

@ -34,7 +34,3 @@
{{- range .Site.Data.main.links.hellug }} {{- range .Site.Data.main.links.hellug }}
<a href="{{ .url }}">{{ .name }}</a></br> <a href="{{ .url }}">{{ .name }}</a></br>
{{- end }} {{- end }}
<h4>Ακολουθήστε τον HEL.L.U.G.</h4>
<a href="https://twitter.com/hellug"><button type="button" 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" 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" style="padding-top:1px; padding-bottom:1px;margin-bottom:4px;"><img src="/media/Facebook.png">Facebook</button></a>

29
themes/hellug-minimal-4/layouts/partials/footer.html Κανονικό αρχείο

@ -0,0 +1,29 @@
<footer>
<hr>
<div class="row">
{{- $currentPage := . }}
{{- range .Site.Menus.main }}
<div class="col">
{{- if .HasChildren }}
{{- .Name }}
{{- range .Children }}
<br><a href="{{ .URL }}">{{ .Name }}</a>
{{- end }}
{{- else }}
{{- .Name }}
{{- end }}
</div>
{{- end }}
<div class="col">
Ακολουθήστε τον HEL.L.U.G.
<a href="https://twitter.com/hellug"><button type="button" 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" 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" style="padding-top:1px; padding-bottom:1px;margin-bottom:4px;"><img src="/media/Facebook.png">Facebook</button></a>
</div>
</div>
<small class="float-right sticky"><a href="/credits">Συντελεστές Ιστοσελίδας</a></small>
{{- partial "scripts.html" . }}
</footer>
</body>
</html>

@ -8,10 +8,11 @@
<meta name="description" content="Hellug Homepage" /> <meta name="description" content="Hellug Homepage" />
<meta name="keywords" content="Hellug" /> <meta name="keywords" content="Hellug" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/simple.css"> <link rel="stylesheet" href="/css/classless.css">
<link href="/css/hellug.css" rel="stylesheet" /> <link href="/css/hellug.css" rel="stylesheet" />
{{ with .OutputFormats.Get "rss" -}} {{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s RSS feed" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ printf `<link rel="%s" type="%s" href="%s" title="%s RSS feed" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}} {{ end -}}
</head> </head>
<body> <body>
<!-- <script src="https://dohliam.github.io/dropin-minimal-css/switcher.js" type="text/javascript"></script> -->

24
themes/hellug-minimal-4/layouts/partials/header.html Κανονικό αρχείο

@ -0,0 +1,24 @@
<!-- menu items -->
<nav>
{{- $currentPage := . }}
<ul>
<li class="float-right sticky"><a onclick="addFontSize(-1)">ᴀ-</a>|<a onclick="addFontSize(1)">A+</a></li>
<li class="float-right sticky"><a onclick="toggleDarkMode(this)">🌓</a></li>
{{- range .Site.Menus.main }}
{{- if .HasChildren }}
<li > <a href="#">{{ .Name }}</a>
<ul >
{{- range .Children }}
<li> <a href="{{ .URL }}">{{ .Name }}</a> </li>
{{- end }}
</ul>
</li>
{{- else }}
<li>
<a href="#">{{ .Name }}</a>
</li>
{{- end }}
{{- end }}
</ul>
</nav>
<!-- menu items end -->

@ -0,0 +1 @@
<img alt="Μεγάλο λογότυπο της Ένωσης Χρηστών και Φίλων Λίνουξ Ελλάδας με τη μασκότ του Λίνουξ Τουξ να κρατά με το ράμφος μία ελληνική σημαία" src="/media/hellug.png">

@ -0,0 +1,40 @@
<!-- Theme changer -->
<script>
function switchTheme(el) { document.documentElement.setAttribute('data-theme', el.value) }
function switchCSS(cssid, el){ document.getElementById(cssid).href = el.value; }
function addFontSize(addPx){
html = document.querySelector('html');
currentSize = parseFloat(window.getComputedStyle(html, null)
.getPropertyValue('font-size'));
html.style.fontSize = (currentSize + addPx) + 'px';
}
function toggleDarkMode(el){
var theme='light'
if (el.innerText == '🌓'){
el.innerText = '☀'; theme='dark';
} else {
el.innerText = '🌓';
}
document.documentElement.setAttribute('data-theme', theme)
}
</script>
<!-- Theme changer end -->
<!-- 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 -->

@ -0,0 +1,5 @@
{{- with .GetPage "pages/welcome" }}
<h3>{{- .Title }}</h3>
{{- .Content}}
<hr>
{{- end }}

382
themes/hellug-minimal-4/static/css/classless.css Κανονικό αρχείο

@ -0,0 +1,382 @@
/* Classless.css v1.0
Table of Contents:
1. Theme Settings
2. Reset
3. Base Style
4. Extras (remove unwanted)
5. Classes (remove unwanted)
*/
/* 1. Theme Settings - */
:root, html[data-theme='light'] {
--rem: 12pt;
--width: 50rem;
--navpos: absolute; /* fixed | absolute */
--font-p: 1em/1.7 'Open Sans', 'DejaVu Sans', FreeSans, Helvetica, sans-serif;
--font-h: .9em/1.5 'Open Sans', 'DejaVu Sans', FreeSans, Helvetica, sans-serif;
--font-c: .9em/1.4 'DejaVu Sans Mono', monospace;
--border: 1px solid var(--cmed);
--ornament: " ";
/* foreground | background color */
--cfg: #433; --cbg: #fff;
--cdark: #888; --clight: #f5f6f7;
--cmed: #d1d1d1;
--clink: #07c;
--cemph: #088; --cemphbg: #0881;
}
/* 2. Reset */
/* reset block elements */
* { box-sizing: border-box; border-spacing: 0; margin: 0; padding: 0;}
header, footer, figure, table, video, details, blockquote,
ul, ol, dl, fieldset, pre, pre > code, caption {
display: block;
margin: 0.5rem 0rem 1rem;
width: 100%;
overflow: auto hidden;
text-align: left;
}
video, summary, input, select { outline:none; }
/* reset clickable things (FF Bug: select:hover prevents usage) */
a, button, select, summary { color: var(--clink); cursor: pointer; }
/* 3. Base Style */
html { font-size: var(--rem); background: var(--cbg); }
body {
position: relative;
margin: auto;
max-width: var(--width);
font: var(--font-p);
color: var(--cfg);
padding: 3.0rem 0.6rem 0;
overflow-x: hidden;
}
body > footer { margin: 10rem 0rem 0rem; font-size: 90%; }
p { margin: .6em 0; }
/* links */
a[href]{ text-decoration: underline solid var(--cmed); text-underline-position: under; }
a[href^="#"] {text-decoration: none; }
a:hover, button:not([disabled]):hover, summary:hover {
filter: brightness(92%); color: var(--cemph); border-color: var(--cemph);
}
/* lists */
ul, ol, dl { margin: 1rem 0; padding: 0 0 0 2em; }
li:not(:last-child), dd:not(:last-child) { margin-bottom: 0.5rem; }
dt { font-weight: bold; }
/* headings */
h1, h2, h3, h4, h5 { margin: 1.5em 0 .5rem; font: var(--font-h); line-height: 1.2em; clear: both; }
h1+h2, h2+h3, h3+h4, h4+h5 { margin-top: .5em; padding-top: 0; } /* non-clashing headings */
h1 { font-size: 2.2em; font-weight: 300; }
h2 { font-size: 2.0em; font-weight: 300; font-variant: small-caps; }
h3 { font-size: 1.5em; font-weight: 400; }
h4 { font-size: 1.1em; font-weight: 700; }
h5 { font-size: 1.2em; font-weight: 400; color: var(--cfg); }
h6 { font-size: 1.0em; font-weight: 700; font-style: italic; display: inline; }
h6 + p { display: inline; }
/* tables */
td, th {
padding: 0.5em 0.8em;
text-align: right;
border-bottom: 0.1rem solid var(--cmed);
white-space: nowrap;
font-size: 95%;
}
thead th[colspan] { padding: .2em 0.8em; text-align: center; }
thead tr:not(:only-child) td { padding: .2em 0.8em; }
thead+tbody tr:first-child td { border-top: 0.1rem solid var(--cdark); }
td:first-child, th:first-child { text-align: left; }
tr:hover{ background-color: var(--clight); }
table img { display: block; }
/* figures */
img, svg { max-width: 100%; vertical-align: text-top; object-fit: cover; }
p>img:not(:only-child) { float: right; margin: 0 0 .5em .5em; }
figure > img { display: inline-block; width: auto; }
figure > img:only-of-type, figure > svg:only-of-type { max-width: 100%; display: block; margin: 0 auto 0.4em; }
figcaption, caption { font: var(--font-h); color: var(--cdark); width: 100%; }
figcaption > *:first-child, caption > *:first-child { display: inline-block; margin: 0; }
figure > *:not(:last-child) { margin-bottom: 0.4rem; }
/* code */
pre > code {
margin: 0;
position: relative;
padding: 0.8em;
border-left: .4rem solid var(--cemph);
}
code, kbd, samp {
padding: 0.2em;
font: var(--font-c);
background: var(--clight);
border-radius: 4px;
}
kbd { border: 1px solid var(--cmed); }
/* misc */
blockquote { border-left: 0.4rem solid var(--cmed); padding: 0 0 0 1rem; }
time{ color: var(--cdark); }
hr { border: 0; border-top: 0.1rem solid var(--cmed); }
nav { width: 100%; background-color: var(--clight); }
::selection, mark { background: var(--clink); color: var(--cbg); }
/* 4. Extra Style */
/* Auto Numbering: figure/tables/headings/cite */
article { counter-reset: h2 0 h3 0 tab 0 fig 0 lst 0 ref 0 eq 0; }
article figure figcaption:before {
color: var(--cemph);
counter-increment: fig;
content: "Figure " counter(fig) ": ";
}
/* subfigures */
figure { counter-reset: subfig 0 }
article figure figure { counter-reset: none; }
article figure > figure { display: inline-grid; width: auto; }
figure > figure:not(:last-of-type) { padding-right: 1rem; }
article figure figure figcaption:before {
counter-increment: subfig 1;
content: counter(subfig, lower-alpha) ": ";
}
/* listings */
article figure pre + figcaption:before {
counter-increment: lst 1;
content: "Listing " counter(lst) ": ";
}
/* tables */
figure > table:only-of-type { display: table; margin: 0.5em auto !important; width: fit-content; }
article figure > table caption { display: table-caption; caption-side: bottom; }
article figure > table + figcaption:before,
article table caption:before {
color: var(--cemph);
counter-increment: tab 1;
content: "Table " counter(tab) ": ";
}
/* headings */
article h2, h3 { position: relative; }
article h2:before,
article h3:before {
display: inline-block;
position: relative;
font-size: 0.6em;
text-align: right;
vertical-align: baseline;
left: -1rem;
width: 2.5em;
margin-left: -2.5em;
}
article h1 { counter-set: h2; }
article h2:before { counter-increment: h2; content: counter(h2) ". "; counter-set: h3; }
article h3:before { counter-increment: h3; content: counter(h2) "." counter(h3) ". ";}
@media (max-width: 60rem) { h2:before, h3:before { display: none; } }
/* tooltip + citation */
article p>cite:before {
padding: 0 .5em 0 0;
counter-increment: ref; content: " [" counter(ref) "] ";
vertical-align: super; font-size: .6em;
}
article p>cite > *:only-child { display: none; }
article p>cite:hover > *:only-child,
[data-tooltip]:hover:before {
display: inline-block; z-index: 40;
white-space: pre-wrap;
position: absolute; left: 1rem; right: 1rem;
padding: 1em 2em;
text-align: center;
transform:translateY( calc(-100%) );
content: attr(data-tooltip);
color: var(--cbg);
background-color: var(--cemph);
box-shadow: 0 2px 10px 0 black;
}
[data-tooltip], article p>cite:before {
color: var(--clink);
border: .8rem solid transparent; margin: -.8rem;
}
abbr[title], [data-tooltip] { cursor: help; }
/* navbar */
nav+* { margin-top: 3rem; }
body>nav, header nav {
position: var(--navpos);
top: 0; left: 0; right: 0;
z-index: 41;
box-shadow: 0vw -50vw 0 50vw var(--clight), 0 calc(-50vw + 2px) 4px 50vw var(--cdark);
}
nav ul { list-style-type: none; }
nav ul:first-child { margin: 0; padding: 0; overflow: visible; }
nav ul:first-child > li {
display: inline-block;
margin: 0;
padding: 0.8rem .6rem;
}
nav ul > li > ul {
display: none;
width: auto;
position: absolute;
margin: 0.5rem 0;
padding: 1rem 2rem;
background-color: var(--clight);
border: var(--border);
border-radius: 4px;
z-index: 42;
}
nav ul > li > ul > li { white-space: nowrap; }
nav ul > li:hover > ul { display: block; }
@media (max-width: 40rem) {
nav ul:first-child > li:first-child:after { content: " \25BE"; }
nav ul:first-child > li:not(:first-child):not(.sticky) { display: none; }
nav ul:first-child:hover > li:not(:first-child):not(.sticky) { display: block; float: none !important; }
}
/* details/cards */
summary>* { display: inline; }
.card, details {
display: block;
margin: 0.5rem 0rem 1rem;
padding: 0 .6rem;
border-radius: 4px;
overflow: hidden;
}
.card, details[open] { outline: 1px solid var(--cmed); }
.card>img:first-child { margin: -3px -.6rem; max-width: calc(100% + 1.2rem); }
summary:hover, details[open] summary, .card>p:first-child {
box-shadow: inset 0 0 0 2em var(--clight), 0 -.8rem 0 .8rem var(--clight);
}
.hint { --cmed: var(--cemph); --clight: var(--cemphbg); background-color: var(--clight); }
.warn { --cmed: #c11; --clight: #e221; background-color: var(--clight); }
/* big first letter */
article > section:first-of-type > h2:first-of-type + p:first-letter,
article > h2:first-of-type + p:first-letter, .lettrine {
float: left;
font-size: 3.5em;
padding: 0.1em 0.1em 0 0;
line-height: 0.68em;
color: var(--cemph);
}
/* ornaments */
section:after {
display: block;
margin: 1em 0;
color: var(--cmed);
text-align: center;
font-size: 1.5em;
content: var(--ornament);
}
/* side menu (aside is not intended for use in a paragraph!) */
main aside {
position: absolute;
width: 8rem; right: -8.6rem;
font-size: 0.8em; line-height: 1.4em;
}
@media (max-width: 70rem) { main aside { display: none; } }
/* forms and inputs */
textarea, input:not([type=range]), button, select {
font: var(--font-h);
border-radius: 4px;
border: 1.5px solid var(--cmed);
padding: 0.4em 0.8em;
color: var(--cfg);
background-color: var(--clight);
}
fieldset select, input:not([type=checkbox]):not([type=radio]) {
display: block;
width: 100%;
margin: 0 0 1rem;
}
button, select {
font-weight: bold;
margin: .5em;
border: 1.5px solid var(--clink);
}
button { padding: 0.4em 1em; font-size: 85%; letter-spacing: 0.1em; }
button[disabled]{ color: var(--cdark); border-color: var(--cmed); }
fieldset { border-radius: 4px; border: var(--border); padding: .5em 1em;}
textarea:hover, input:not([type=checkbox]):not([type*='ra']):hover, select:hover{
border: 1.5px solid var(--cemph);
}
textarea:focus, input:not([type=checkbox]):not([type*='ra']):focus{
border: 1.5px solid var(--clink);
box-shadow: 0 0 5px var(--clink);
}
p>button { padding: 0 .5em; margin: 0 .5em; }
p>select { padding: 0; margin: 0 .5em; }
/* 5. Bootstrap-compatible classes */
/* grid */
.row { display: flex; margin: 0.5rem -0.6rem; align-items: stretch; }
.row [class*="col"] { padding: 0 0.6rem; }
.row .col { flex: 1 1 100%; }
.row .col-2 { flex: 0 0 16.66%; max-width: 16.66%;}
.row .col-3 { flex: 0 0 25%; max-width: 25%;}
.row .col-4 { flex: 0 0 33.33%; max-width: 33.33%; }
.row .col-5 { flex: 0 0 41.66%; max-width: 41.66%; }
.row .col-6 { flex: 0 0 50%; max-width: 50%; }
@media (max-width: 40rem) { .row { flex-direction: column; } }
/* align */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.float-left { float: left !important; }
.float-right { float: right !important; }
.clearfix { clear: both; }
/* colors */
.text-black { color: #000; }
.text-white { color: #fff; }
.text-primary { color: var(--cemph); }
.text-secondary{ color: var(--cdark); }
.bg-white { background-color: #fff; }
.bg-light { background-color: var(--clight); }
.bg-primary { background-color: var(--cemph); }
.bg-secondary{ background-color: var(--cmed); }
/* margins */
.mx-auto { margin-left: auto; margin-right: auto; }
.m-0 { margin: 0 !important; }
.m-1, .mx-1, .mr-1 { margin-right: 1.0rem !important; }
.m-1, .mx-1, .ml-1 { margin-left: 1.0rem !important; }
.m-1, .my-1, .mt-1 { margin-top: 1.0rem !important; }
.m-1, .my-1, .mb-1 { margin-bottom: 1.0rem !important; }
/* pading */
.p-0 { padding: 0 !important; }
.p-1, .px-1, .pr-1 { padding-right: 1.0rem !important; }
.p-1, .px-1, .pl-1 { padding-left: 1.0rem !important; }
.p-1, .py-1, .pt-1 { padding-top: 1.0rem !important; }
.p-1, .py-1, .pb-1 { padding-bottom: 1.0rem !important; }
/* be print-friendly */
@media print {
@page { margin: 1.5cm 2cm; }
html {font-size: 9pt!important; }
body { max-width: 27cm; }
p { orphans: 2; widows: 2; }
caption, figcaption { page-break-before: avoid; }
h2, h3, h4, h5 { page-break-after: avoid;}
.noprint, body>nav, section:after { display: none; }
.row { flex-direction: row; }
}

45
themes/hellug-minimal-4/static/css/hellug.css Κανονικό αρχείο

@ -0,0 +1,45 @@
:root, html[data-theme='light'] {
--rem: 16px;
--navpos: absolute;
--width: 960px;
--font-p: 1em/1.6 system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
--font-h: 1em/1.6 "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-c: .9em/1.4 SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
--ornament: "";
--border: 1px solid var(--cmed);
/* foreground | background color */
--cfg: #212529; --cbg: #fff;
--cdark: #343a40; --clight: #f8f9fa;
--cmed: #6c757d;
--clink: #0d6efd;
--cemph: #7952b3; --cemphbg: #7952b310;
}
html[data-theme='dark'] {
/* foreground | background color */
--cfg: #cecbc4; --cbg: #252220;
--cdark: #999; --clight: #333;
--cmed: #566;
--clink: #1ad;
--cemph: #0b9; --cemphbg: #0b91;
}
footer > .row { display: flex; margin: 0rem 0rem; align-items: normal; }
.sitemap {
display: flex;
align-items: normal;
justify-content: space-around;
flex-wrap: wrap;
}
.sitemap-item {
text-align: left;
vertical-align: top;
}
main h3, h4 {
margin-bottom: 0.1em;
}

1
themes/hellug-minimal-4/static/css/silicon_basic.min.css εξωτερικό Κανονικό αρχείο

Το diff αρχείων καταστέλλεται επειδή μία ή περισσότερες γραμμές είναι πολύ μεγάλες

@ -1,7 +0,0 @@
<!-- <div class="breadcrumb">
<a href="../../../../index.html">Αρχική</a>
<a href="https://www.hellug.gr/c/draseis">Δράσεις</a>
<a href="../../../../c/draseis/news">Νέα</a>
</div>
-->

@ -1,2 +0,0 @@
<img src="media/carousel1.png" >

@ -1,42 +0,0 @@
<footer>
<div class="sitemap">
{{- $currentPage := . }}
{{- range .Site.Menus.main }}
<div class="sitemap-item">
{{- if .HasChildren }}
{{- .Name }}
{{- range .Children }}
<br><a href="{{ .URL }}">{{ .Name }}</a>
{{- end }}
</ul>
{{- else }}
{{- .Name }}
{{- end }}
</div>
{{- end }}
<div class="sitemap-item">
Σύνδεσμοι
{{- range .Site.Data.main.links.hellug }}
<br><a href="{{ .url }}">{{ .name }}</a>
{{- end }}
</div>
</div>
<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 -->
</footer>
</body>
</html>

@ -1,8 +0,0 @@
<!-- menu items -->
<nav>
{{- $currentPage := . }}
{{- range .Site.Menus.main }}
<a tabindex="-1" href="{{ .URL }}">{{ .Name }}</a>
{{- end }}
</nav>
<!-- menu items end -->

@ -1 +0,0 @@
<img src="/media/hellug.png">

@ -1 +0,0 @@
{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}

@ -1,37 +0,0 @@
body {
grid-template-columns: 1fr min(70rem, 90%) 1fr;
}
main {
display: grid;
gap: 30px 80px;
grid-template-columns: min(70%) auto;
}
article {
border: 0px solid var(--border);
}
.sitemap {
display: flex;
align-items: normal;
justify-content: space-around;
flex-wrap: wrap;
}
.sitemap-item {
text-align: left;
vertical-align: top;
}
.master {
grid-column-start 1;
}
.sidebar {
grid-column-start 3;
}
main h3, h4 {
margin-bottom: 0.1em;
}