forked from fediversity/fediversity
		
	git-subtree-dir: website git-subtree-mainline:83b1c9ac3bgit-subtree-split:d208ee83f8
		
			
				
	
	
		
			208 lines
		
	
	
	
		
			5.7 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			208 lines
		
	
	
	
		
			5.7 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable file
		
	
	
	
	
{{ define "main" }}
 | 
						|
<!-- Banner -->
 | 
						|
{{ with .Params.banner }}
 | 
						|
<section class="section pt-14">
 | 
						|
  <div class="container">
 | 
						|
    <div class="row justify-center">
 | 
						|
      <div class="lg:col-7 md:col-9 mb-8 text-center">
 | 
						|
        <h1 class="mb-4 text-h3 lg:text-h1">{{ .title | markdownify }}</h1>
 | 
						|
        <p class="mb-8">{{ .content | markdownify }}</p>
 | 
						|
        {{ with .button }} {{ if .enable }}
 | 
						|
        <a
 | 
						|
          class="btn btn-primary"
 | 
						|
          href="{{ .link | absURL }}"
 | 
						|
          {{
 | 
						|
          if
 | 
						|
          strings.HasPrefix
 | 
						|
          .link
 | 
						|
          `http`
 | 
						|
          }}
 | 
						|
          target="_blank"
 | 
						|
          rel="noopener"
 | 
						|
          {{
 | 
						|
          end
 | 
						|
          }}
 | 
						|
        >
 | 
						|
          {{ .label }}
 | 
						|
          <i class="fa fa-arrow-right pl-2"></i>
 | 
						|
        </a>
 | 
						|
        {{ end }} {{ end }}
 | 
						|
      </div>
 | 
						|
      <div class="col-12">
 | 
						|
        {{ partial "image" (dict "Src" .image "Alt" "Banner image" "Loading"
 | 
						|
        "eager" "Class" "mx-auto lg:!max-w-[800px]" "DisplayXL" "800x" ) }}
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</section>
 | 
						|
{{ end }}
 | 
						|
<!-- /Banner -->
 | 
						|
 | 
						|
<!-- Consortium -->
 | 
						|
<center><h2> Consortium</h2></center>
 | 
						|
 | 
						|
 | 
						|
<div class="container">
 | 
						|
  <div class="grid-container">
 | 
						|
    {{ range $i, $e := .Params.features3 }}
 | 
						|
    
 | 
						|
    <div class="grid-item">
 | 
						|
 | 
						|
      <div class="header-with-image2">
 | 
						|
        <img src="{{ .image }}" alt="Image">
 | 
						|
        <h5 class="mb-4">{{ .title | markdownify }}</h4>
 | 
						|
      </div>
 | 
						|
 | 
						|
 | 
						|
      <p class="mb-8 text-lg">{{ .content | markdownify }}
 | 
						|
        {{ with .button }} {{ if .enable }}
 | 
						|
        <a class="mt-6" href="{{ .link | absURL }}" style="color:#FF6E00">
 | 
						|
          Read more
 | 
						|
          <i class="fa fa-arrow-right pl-2"></i>
 | 
						|
        </a>
 | 
						|
        {{ end }} {{ end }}
 | 
						|
      </p>
 | 
						|
    </div>
 | 
						|
    {{ end }}
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<!-- /Consortium -->
 | 
						|
 | 
						|
<!-- Features -->
 | 
						|
{{ range $i, $e:= .Params.features }}
 | 
						|
<section class="section-sm {{ if (modBool $i 2) }}bg-gradient{{ end }}">
 | 
						|
  <div class="container">
 | 
						|
    <div class="row items-center justify-between">
 | 
						|
      <div
 | 
						|
        class="mb:md-0 {{ if not (modBool $i 2) }}
 | 
						|
              md:order-2
 | 
						|
            {{ end }} md:col-5 mb-6"
 | 
						|
      >
 | 
						|
        {{ partial "image" (dict "Src" .image "Alt" "feature image" "DisplayXL"
 | 
						|
        "520x" "DisplayLG" "425x" "DisplayMD" "360x") }}
 | 
						|
      </div>
 | 
						|
      <div
 | 
						|
        class="{{ if not (modBool $i 2) }}
 | 
						|
              md:order-1
 | 
						|
            {{ end }} md:col-7 lg:col-6"
 | 
						|
      >
 | 
						|
        <h2 class="mb-4">{{ .title | markdownify }}</h2>
 | 
						|
        <p class="mb-8 text-lg">{{ .content | markdownify }}</p>
 | 
						|
        <ul> 
 | 
						|
          {{ range .bulletpoints }}
 | 
						|
          <li class="relative mb-4 pl-6">
 | 
						|
            <i class="fa fa-check absolute left-0 top-1.5"></i>
 | 
						|
            {{ . | markdownify }}
 | 
						|
          </li>
 | 
						|
          {{ end }}
 | 
						|
        </ul>
 | 
						|
        {{ with .button }} {{ if .enable }}
 | 
						|
        <a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
 | 
						|
          {{ .label }}
 | 
						|
          <i class="fa fa-arrow-right pl-2"></i>
 | 
						|
        </a>
 | 
						|
        {{ end }} {{ end }}
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</section>
 | 
						|
{{ end }}
 | 
						|
<!-- /Features -->
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<!-- features2test-->
 | 
						|
<center><h2> Fediverse Explained</h2></center>
 | 
						|
 | 
						|
 | 
						|
<div class="container">
 | 
						|
  <div class="grid-container">
 | 
						|
    {{ range $i, $e := .Params.features2 }}
 | 
						|
    <div class="grid-item">
 | 
						|
      <div class="header-with-image">
 | 
						|
        <img src="{{ .image }}" alt="Image">
 | 
						|
        <h4 class="mb-4">{{ .title | markdownify }}</h4>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <p class="mb-8 text-lg">{{ .content | markdownify }}</p>
 | 
						|
      {{ with .button }} {{ if .enable }}
 | 
						|
      <a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
 | 
						|
        {{ .label }}
 | 
						|
        <i class="fa fa-arrow-right pl-2"></i>
 | 
						|
      </a>
 | 
						|
      {{ end }} {{ end }}
 | 
						|
    </div>
 | 
						|
    {{ end }}
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<br>
 | 
						|
<br>
 | 
						|
<br>
 | 
						|
<!-- features2test-->
 | 
						|
 | 
						|
{{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
 | 
						|
<section>
 | 
						|
 | 
						|
  <div class="center-wrapper"> 
 | 
						|
  <div class="grid-container-small">
 | 
						|
    <div class="column">
 | 
						|
      <ul class="list">
 | 
						|
        {{ if gt (len (where .Site.RegularPages "Section" "events")) 0 }}
 | 
						|
        <section>
 | 
						|
          <div class="header-with-image">
 | 
						|
            <img src="/images/users.png" alt="Image">
 | 
						|
            <h4 class="mb-4">Events</h4>
 | 
						|
          </div>
 | 
						|
          <ul class="list">
 | 
						|
            {{ range (first 5 (where .Site.RegularPages "Section" "events").ByDate.Reverse) }}
 | 
						|
            <li class="list-item">
 | 
						|
              <div class="content">
 | 
						|
                <a class="link" href="{{ .RelPermalink }}" style="color: #FF6E00">{{ .Title }}</a>
 | 
						|
              </div>
 | 
						|
              <hr class="hr-list">
 | 
						|
              
 | 
						|
              <time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
 | 
						|
              <hr class="hr-list2">
 | 
						|
            </li>
 | 
						|
            <div class="line"></div>
 | 
						|
            {{ end }}
 | 
						|
        </section>
 | 
						|
        {{ end }}
 | 
						|
      </ul>
 | 
						|
    </div>
 | 
						|
    <div class="column">
 | 
						|
      <ul class="list">
 | 
						|
        {{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
 | 
						|
        <section>
 | 
						|
          <div class="header-with-image">
 | 
						|
            <img src="/images/users.png" alt="Image">
 | 
						|
            <h4 class="mb-4">Latest News</h4>
 | 
						|
          </div>
 | 
						|
          <ul class="list">
 | 
						|
            {{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
 | 
						|
            <li class="list-item">
 | 
						|
              <div class="content">
 | 
						|
                <a class="link" href="{{ .RelPermalink }}" style="color: #FF6E00">{{ .Title }}</a>
 | 
						|
              </div>
 | 
						|
              <hr class="hr-list">
 | 
						|
              
 | 
						|
              <time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
 | 
						|
              <hr class="hr-list2">
 | 
						|
            </li>
 | 
						|
            <div class="line"></div>
 | 
						|
            {{ end }}
 | 
						|
        </section>
 | 
						|
        {{ end }}
 | 
						|
      </ul>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  </div>
 | 
						|
</section>
 | 
						|
{{ end }}
 | 
						|
 | 
						|
 | 
						|
{{ end }}
 |