|
@@ -0,0 +1,73 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="ie=edge, Chrome=1">
|
|
|
+ <meta http-equiv="Cache-Control" content="no-cache">
|
|
|
+ <title>Choozmo Marketing Cloud</title>
|
|
|
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
+ integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
|
|
+ <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.11.2/css/all.css">
|
|
|
+ <link rel="stylesheet" href="/css/style.css">
|
|
|
+ <link rel="stylesheet" href="/css/custom.css">
|
|
|
+</head>
|
|
|
+
|
|
|
+<body>
|
|
|
+ {{ partial "navbar.html" . }}
|
|
|
+
|
|
|
+ <main class="container news-content" style="overflow-x: hidden;">
|
|
|
+ {{ $paginator := .Paginate .Data.Pages }}
|
|
|
+
|
|
|
+ <ul id="categories">
|
|
|
+ {{ range $paginator.Pages }}
|
|
|
+ {{ with .Params.categories }}
|
|
|
+ {{ range . }}
|
|
|
+ <li>
|
|
|
+ <button>
|
|
|
+ <a href="{{ "categories" | absURL}}/{{ . | urlize }}">{{ . }}</a>
|
|
|
+ </button>
|
|
|
+ </li>
|
|
|
+ {{ end }}
|
|
|
+ {{ end }}
|
|
|
+ {{ end }}
|
|
|
+ </ul>
|
|
|
+
|
|
|
+ {{ range $paginator.Pages }}
|
|
|
+ <div class="bhouse_news my-50 article-item">
|
|
|
+ <div class="likeSee__state pl-md-0 pr-md-0">
|
|
|
+ <div class="likeSee__state">
|
|
|
+ <a href="{{ .RelPermalink }}">
|
|
|
+ <h1 class="bhouse_title">{{ .Title }}</h1>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ <div class="likeSee__state__filter">
|
|
|
+ <p>{{ .PublishDate.Format "2006-01-02" }}</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="bhouseweb_loc_sec mt-15">
|
|
|
+ <a style="color:#212529" href="{{ .RelPermalink }}" class="description">
|
|
|
+ <div class="NewsDescription">
|
|
|
+ <p class="NewsDescription_p" style="letter-spacing: 1px;">{{.Summary}}</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <hr class="bhouseweb_loc_line mt-30">
|
|
|
+ {{ end }}
|
|
|
+ </main>
|
|
|
+
|
|
|
+ {{ partial "footer.html" . }}
|
|
|
+
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
|
|
|
+ integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
|
|
|
+ integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+ <script src="//code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|