garbage collection
This commit is contained in:
		
							
								
								
									
										164
									
								
								layouts/min/single.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										164
									
								
								layouts/min/single.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,164 @@
 | 
			
		||||
<head>
 | 
			
		||||
  <meta charset="utf-8">
 | 
			
		||||
  <title>{{ .Title }}</title>
 | 
			
		||||
 | 
			
		||||
  {{ "<!-- mobile responsive meta -->" | safeHTML }}
 | 
			
		||||
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
 | 
			
		||||
  <meta name="description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
 | 
			
		||||
  {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
 | 
			
		||||
  {{ hugo.Generator }}
 | 
			
		||||
 | 
			
		||||
  {{ "<!-- plugins -->" | safeHTML }}
 | 
			
		||||
  {{ range .Site.Params.plugins.css }}
 | 
			
		||||
  <link rel="stylesheet" href="{{ .link | absURL }}">
 | 
			
		||||
  {{ end }}
 | 
			
		||||
 | 
			
		||||
  {{ "<!-- Main Stylesheet -->" | safeHTML }}
 | 
			
		||||
  {{ $styles := resources.Get "scss/style.scss" | toCSS }}
 | 
			
		||||
  <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
 | 
			
		||||
 | 
			
		||||
  {{ "<!--Favicon-->" | safeHTML }}
 | 
			
		||||
  <link rel="shortcut icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
 | 
			
		||||
  <link rel="icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
 | 
			
		||||
 | 
			
		||||
  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
 | 
			
		||||
  integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
 | 
			
		||||
  crossorigin=""/>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  <!-- Make sure you put this AFTER Leaflet's CSS -->
 | 
			
		||||
 <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
 | 
			
		||||
   integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
 | 
			
		||||
   crossorigin=""></script>
 | 
			
		||||
 | 
			
		||||
<style>
 | 
			
		||||
  #map {
 | 
			
		||||
    height: 500px;
 | 
			
		||||
    border: 1px solid #aaa;
 | 
			
		||||
    border-radius: 15px;
 | 
			
		||||
  }
 | 
			
		||||
</style>
 | 
			
		||||
 | 
			
		||||
</head>
 | 
			
		||||
 | 
			
		||||
<section class="page-title-section overlay" style="background-image: url('{{ .Params.Bg_image | relURL}}'),url('{{`media/backgrounds/page-title.png`| relURL}}');" >
 | 
			
		||||
  <div class="container">
 | 
			
		||||
    <div class="row">
 | 
			
		||||
      <div class="col-md-8">
 | 
			
		||||
        <ul class="list-inline custom-breadcrumb">
 | 
			
		||||
          <!--li class="list-inline-item h1"><a class="text-primary font-secondary" href="{{ .Site.BaseURL | absLangURL }}">{{ .Site.Params.home }}</a></li-->
 | 
			
		||||
          <li class="list-inline-item h2"><i class="ti-angle-right text-white"></i></li>
 | 
			
		||||
          <li class="list-inline-item text-white h1 font-secondary">{{ .Title }}</li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <p class="text-lighten">{{ .Params.Description | markdownify }}</p>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</section>
 | 
			
		||||
 | 
			
		||||
<section class="section">
 | 
			
		||||
  <div class="container">
 | 
			
		||||
    <div class="row">
 | 
			
		||||
      <div class="col-12">
 | 
			
		||||
        <div class="content">
 | 
			
		||||
          {{ .Content | safeHTML }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</section>
 | 
			
		||||
 | 
			
		||||
<!-- footer -->
 | 
			
		||||
<footer>
 | 
			
		||||
  <!-- newsletter -->
 | 
			
		||||
  {{ if .Site.Params.subscription.enable }}
 | 
			
		||||
  {{ with .Site.Params.subscription }}
 | 
			
		||||
  <div class="newsletter">
 | 
			
		||||
    <div class="container">
 | 
			
		||||
      <div class="row">
 | 
			
		||||
        <div class="col-md-9 ml-auto bg-primary py-5 newsletter-block">
 | 
			
		||||
          <h3 class="text-white">{{ i18n "subscribe_newsletter" }}</h3>
 | 
			
		||||
          <form action="{{ .mailchimp_form_action }}" method="post" name="mc-embedded-subscribe-form" target="_blank">
 | 
			
		||||
            <div class="input-wrapper">
 | 
			
		||||
              <input type="email" class="form-control border-0" id="newsletter" name="newsletter" placeholder="{{ i18n "enter_email" }}">
 | 
			
		||||
              <button type="submit" name="subscribe" class="btn btn-primary">{{ i18n "join" }}</button>
 | 
			
		||||
              <div style="position: absolute; left: -5000px;" aria-hidden="true">
 | 
			
		||||
                <input type="text" name="{{ .mailchimp_form_name }}" tabindex="-1">
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </form>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  {{ end }}
 | 
			
		||||
  {{ end }}
 | 
			
		||||
  <!-- footer content -->
 | 
			
		||||
  <div class="footer bg-footer section border-bottom">
 | 
			
		||||
    <div class="container">
 | 
			
		||||
      <div class="row">
 | 
			
		||||
        <div class="col-lg-3 col-sm-8 mb-5 mb-lg-0">
 | 
			
		||||
          <!-- logo -->
 | 
			
		||||
          <a class="logo-footer"><img class="img-fluid mb-4" src="{{ .Site.Params.logo | absURL }}" alt="{{ .Site.Title }}"></a>
 | 
			
		||||
          <ul class="list-unstyled">
 | 
			
		||||
            <li class="mb-4">
 | 
			
		||||
              <a href="{{ .Site.Params.route_link }}">{{ .Site.Params.address | markdownify }}</a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="mb-4">{{ .Site.Params.email | markdownify }}</li>
 | 
			
		||||
            <li class="mb-4"><a href="tel:{{ .Site.Params.mobile | markdownify }}">{{ .Site.Params.mobile | markdownify }}</a></li>
 | 
			
		||||
            <li class="mb-4">
 | 
			
		||||
              <a href="{{ .Site.Params.impressumminURL | absLangURL }}">Impressum</a>
 | 
			
		||||
            </li>
 | 
			
		||||
          </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <!-- copyright -->
 | 
			
		||||
  <div class="copyright py-4 bg-footer">
 | 
			
		||||
    <div class="container">
 | 
			
		||||
      <div class="row">
 | 
			
		||||
        <div class="col-sm-7 text-sm-left text-center">
 | 
			
		||||
          <p class="mb-0">{{ .Site.Params.copyright | markdownify }}</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="col-sm-5 text-sm-right text-center">
 | 
			
		||||
          <ul class="list-inline">
 | 
			
		||||
            {{ range .Site.Params.social }}
 | 
			
		||||
            <li class="list-inline-item"><a class="d-inline-block p-2" href="{{ .link | safeURL }}"><i class="{{ .icon }} text-primary"></i></a></li>
 | 
			
		||||
            {{ end }}
 | 
			
		||||
          </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</footer>
 | 
			
		||||
<!-- /footer -->
 | 
			
		||||
 | 
			
		||||
{{ "<!-- JS Plugins -->" | safeHTML }}
 | 
			
		||||
{{ range .Site.Params.plugins.js}}
 | 
			
		||||
<script src="{{ .link | absURL }}"></script>
 | 
			
		||||
{{ end }}
 | 
			
		||||
 | 
			
		||||
{{ "<!-- Main Script -->" | safeHTML }}
 | 
			
		||||
{{ $script := resources.Get "js/script.js" | minify}}
 | 
			
		||||
<script src="{{ $script.Permalink }}"></script>
 | 
			
		||||
 | 
			
		||||
{{ "<!-- google analitycs -->" | safeHTML }}
 | 
			
		||||
{{ with .Site.Params.google_analitycs_id}}
 | 
			
		||||
<script>
 | 
			
		||||
  (function (i, s, o, g, r, a, m) {
 | 
			
		||||
    i['GoogleAnalyticsObject'] = r;
 | 
			
		||||
    i[r] = i[r] || function () {
 | 
			
		||||
      (i[r].q = i[r].q || []).push(arguments)
 | 
			
		||||
    }, i[r].l = 1 * new Date();
 | 
			
		||||
    a = s.createElement(o),
 | 
			
		||||
      m = s.getElementsByTagName(o)[0];
 | 
			
		||||
    a.async = 1;
 | 
			
		||||
    a.src = g;
 | 
			
		||||
    m.parentNode.insertBefore(a, m)
 | 
			
		||||
  })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
 | 
			
		||||
  ga('create', '{{ . }}', 'auto');
 | 
			
		||||
  ga('send', 'pageview');
 | 
			
		||||
</script>
 | 
			
		||||
{{ end }}
 | 
			
		||||
		Reference in New Issue
	
	Block a user