2020-06-11 11:46:16 +00:00
|
|
|
{{- define "main" -}}
|
2021-10-28 14:52:49 +00:00
|
|
|
<p class="about body-width">
|
|
|
|
A <strong>ANSOL - Associação Nacional para o Software Livre</strong> é uma
|
|
|
|
associação portuguesa sem fins lucrativos que tem como fim a divulgação,
|
|
|
|
promoção, desenvolvimento, investigação e estudo da Informática Livre e das
|
|
|
|
suas repercussões sociais, políticas, filosóficas, culturais, técnicas e
|
|
|
|
científicas.
|
|
|
|
</p>
|
2020-06-11 11:46:16 +00:00
|
|
|
|
2021-10-28 14:52:49 +00:00
|
|
|
<div class='body-width'>
|
|
|
|
<p class="why-join">
|
|
|
|
<span>Precisamos da tua ajuda</span>
|
2021-10-28 16:43:31 +00:00
|
|
|
<a href="{{ (site.GetPage "inscricao").Permalink }}" class='cta'>Junta-te a nós</a>
|
2021-10-28 14:52:49 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-06-11 11:46:16 +00:00
|
|
|
|
2021-10-28 14:52:49 +00:00
|
|
|
<section class='news-section'>
|
|
|
|
<h2 class="pull-header body-width">Notícias</h2>
|
|
|
|
<ul class='news-list body-width'>
|
2021-11-01 01:15:28 +00:00
|
|
|
{{ $query := where site.RegularPages "Type" "noticias" -}}
|
|
|
|
{{ $query = first 3 $query -}}
|
|
|
|
{{ range $post := $query -}}
|
2021-10-28 14:52:49 +00:00
|
|
|
<li>
|
|
|
|
<a class='cover' href="{{ .Permalink }}">
|
2021-12-13 20:05:01 +00:00
|
|
|
{{ $cover := (index (.Resources.ByType "image") 0) }}
|
|
|
|
{{ if not $cover }}
|
|
|
|
{{ $cover = resources.Get "images/default-news-cover.png" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ with $cover }}
|
2021-10-28 14:52:49 +00:00
|
|
|
<img class='news-cover' src="{{ .Permalink }}" />
|
2021-12-13 20:05:01 +00:00
|
|
|
{{ end }}
|
2021-10-28 14:52:49 +00:00
|
|
|
</a>
|
2020-06-11 11:46:16 +00:00
|
|
|
|
2021-10-28 14:52:49 +00:00
|
|
|
<div class='text'>
|
|
|
|
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
2020-06-11 11:46:16 +00:00
|
|
|
|
2021-10-28 14:52:49 +00:00
|
|
|
<p class="published-date">{{ time.Format "2 de January de 2006" .PublishDate }}</p>
|
|
|
|
|
|
|
|
<div class="summary">
|
|
|
|
{{ .Summary }}
|
|
|
|
<p><a href="{{ .Permalink }}">Ler tudo</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
<p class="see-more body-width">
|
2021-11-01 17:36:46 +00:00
|
|
|
<a href="{{ (site.GetPage "noticias").Permalink }}">Ver mais notícias</a>
|
2021-10-28 14:52:49 +00:00
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class='campaigns-section'>
|
|
|
|
<h2 class="pull-header body-width">Iniciativas</h2>
|
|
|
|
<ul class='campaigns-list body-width'>
|
|
|
|
{{ $query := where site.RegularPages "Type" "iniciativas" }}
|
2021-11-09 14:59:04 +00:00
|
|
|
{{ $query := where $query "Params.featured" true }}
|
2021-10-28 14:52:49 +00:00
|
|
|
{{ $query = first 3 $query }}
|
|
|
|
|
|
|
|
{{ range $post := $query }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{ with (.Resources.ByType "image").GetMatch "*cover*" }}
|
|
|
|
<img class='campaign-cover' src="{{ .Permalink }}" />
|
|
|
|
{{ end }}
|
|
|
|
</a>
|
|
|
|
<h3 class='title'><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class='events-section'>
|
|
|
|
<h2 class="pull-header body-width">Próximos eventos</h2>
|
|
|
|
<ul class='events-list body-width'>
|
|
|
|
{{ $query := where site.RegularPages "Type" "eventos" }}
|
|
|
|
{{ $query = where $query "Params.metadata.event.date.finish" ">=" (now.Format "2006-01-02") }}
|
2022-01-06 14:22:03 +00:00
|
|
|
{{ $query = sort $query "Params.metadata.event.date.start" }}
|
2021-10-28 14:52:49 +00:00
|
|
|
{{ $query = first 3 $query }}
|
|
|
|
|
|
|
|
{{ range $post := $query }}
|
|
|
|
<li>
|
|
|
|
<a class="img" href="{{ .Permalink }}">
|
|
|
|
{{ with (.Resources.ByType "image").GetMatch "*cover*" }}
|
|
|
|
<img class='event-cover' src="{{ .Permalink }}" />
|
|
|
|
{{ end }}
|
|
|
|
</a>
|
2021-11-01 17:36:46 +00:00
|
|
|
<div class="text">
|
|
|
|
<p class="headline">
|
|
|
|
<a class="title" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</p>
|
|
|
|
<p class="subheader">
|
|
|
|
<span class="date">
|
|
|
|
{{ with .Params.metadata.event.date }}
|
|
|
|
{{ if eq (time.Format "2 January 2006" .start) (time.Format "2 January 2006" .finish) }}
|
|
|
|
{{ if eq (time.Format "15:04" .start) (time.Format "15:04" .finish) }}
|
|
|
|
{{ time.Format "2 de January de 2006" .start }}
|
|
|
|
{{ else }}
|
|
|
|
{{ time.Format "2 de January de 2006" .start }} das
|
|
|
|
{{ time.Format "15:04" .start }} às
|
|
|
|
{{ time.Format "15:04" .finish }}
|
|
|
|
{{ end }}
|
|
|
|
{{ else if eq (time.Format "January 2006" .start) (time.Format "January 2006" .finish) }}
|
|
|
|
De {{ time.Format "2" .start }} a {{ time.Format "2 de January de 2006" .finish }}
|
2021-10-28 14:52:49 +00:00
|
|
|
{{ else }}
|
2021-11-01 17:36:46 +00:00
|
|
|
De {{ time.Format "2 de January de 2006" .start }} a {{ time.Format "2 de January de 2006" .finish }}
|
2021-10-28 14:52:49 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2021-11-01 17:36:46 +00:00
|
|
|
</span>
|
|
|
|
—
|
|
|
|
<span class='location'>{{ .Params.metadata.event.location }}</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
2021-10-28 14:52:49 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
<p class="see-more body-width">
|
|
|
|
Falta aqui algum evento?
|
|
|
|
<a href="mailto:contacto@ansol.org">manda-nos uma mensagem</a>
|
|
|
|
</p>
|
|
|
|
</section>
|
2020-06-11 11:46:16 +00:00
|
|
|
{{- end -}}
|