diff --git a/layouts/_default/about.html b/layouts/_default/about.html new file mode 100644 index 0000000..26a3897 --- /dev/null +++ b/layouts/_default/about.html @@ -0,0 +1,160 @@ +{{ define "main" }} + + +{{if .Params.mission.enable }} +{{with .Params.mission }} +
+
+
+
+

{{ .title | markdownify }}

+

{{ .content | markdownify }}

+
    + {{ range .bulletpoints }} +
  • + + + {{. | markdownify}} +
  • + {{ end }} +
+
+
+
+ +
+
+
+
+
+{{ end }} +{{ end }} + + + +{{if .Params.funfacts.enable }} +{{with .Params.funfacts }} +
+
+
+
+ {{ range .funfacts_item }} +
+

{{ .name }}

+

+ 0{{.extension}}

+
+ {{ end }} +
+
+
+
+{{ end }} +{{ end }} + + + +{{if .Params.vision.enable }} +{{with .Params.vision }} +
+
+
+
+
+ +
+
+
+

{{ .title | markdownify }}

+

{{ .content | markdownify }}

+
+
+
+
+{{ end }} +{{ end }} + + + +{{if .Params.achivement.enable }} +{{with .Params.achivement }} +
+
+
+
+
+
+

{{ .title | markdownify }}

+

{{ .content | markdownify }}

+
+ {{ range .funfacts }} +
+

+ 0{{.extension}}

+

{{ .name | markdownify }}

+
+ {{ end }} +
+
+
+
+ {{ range $i, $e:= .services }} +
+
+ +

{{ .name | markdownify }}

+
+
+ {{ end }} +
+
+
+
+
+
+
+{{ end }} +{{ end }} + + + +{{if .Params.featured_testimonial.enable }} +{{with .Params.featured_testimonial }} +
+
+
+
+
+ {{ if .video.enable }} + {{ with .video }} + + {{ end }} + {{ end }} + +
+
+
+
+

{{ .quote | markdownify }}

+

+ {{ .name }} + {{ .designation | markdownify }} +

+
+
+
+
+
+{{ end }} +{{ end }} + + +{{ end }} diff --git a/layouts/_default/services.html b/layouts/_default/services.html new file mode 100644 index 0000000..dbfe3c9 --- /dev/null +++ b/layouts/_default/services.html @@ -0,0 +1,34 @@ +{{ define "main" }} +{{ $data := index site.Data site.Language.Lang }} + + +
+
+
+
+
{{ .Content }}
+
+
+
+ {{ range .Params.services }} +
+
+
+ +
+

{{ .name | markdownify }}

+

{{ .content | markdownify }}

+
+
+ {{ end }} +
+
+
+
+
+
+ + +{{partial "testimonial.html" . }} + +{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..097f5ee --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,84 @@ + + +{{- partial "head.html" . -}} + + + {{- partialCached "preloader.html" . -}} + {{- partial "header.html" . -}} + + +
+
+
+
+ {{.Title}} +
+
+ + +

{{.Title}}

+ + +
{{.Content}}
+
+ + {{ if site.DisqusShortname }} +
+ {{ template "_internal/disqus.html" . }} +
+ {{ end }} +
+
+
+ + + +
+
+
+
+

{{ i18n "recent_post" }}

+
+
+
+ {{ range first 3 (where site.RegularPages "Section" "blog")}} +
+
+ blog-image +
+ + {{ .Title }} + +

{{ .Summary }}

+
+
+
+ {{ end }} +
+
+
+ + {{- partialCached "footer.html" . -}} + + + \ No newline at end of file diff --git a/layouts/_default/team.html b/layouts/_default/team.html new file mode 100644 index 0000000..86c1c68 --- /dev/null +++ b/layouts/_default/team.html @@ -0,0 +1,65 @@ +{{ define "main" }} +{{ $data := index site.Data site.Language.Lang }} + + +
+
+
+
+
{{.Content}}
+
+
+
+
+
+ + + {{ $group := slice }} + {{ range .Params.team_member }} + {{ $group = $group | append .group }} + {{ end }} + + {{ range ( $group | uniq ) }} + + {{ end }} +
+
+
+
+ {{ range .Params.team_member}} +
+
+
+ + +
+
+
+
+
+
+

{{.name}}

+

{{ .designation }}

+
    + {{ range .social }} +
  • + + +
  • + {{ end }} +
+
+ +
+ {{ end }} +
+
+
+ +{{ end }} \ No newline at end of file diff --git a/layouts/_default/testimonial.html b/layouts/_default/testimonial.html new file mode 100644 index 0000000..6fa68cd --- /dev/null +++ b/layouts/_default/testimonial.html @@ -0,0 +1,78 @@ +{{ define "main" }} + + +
+
+
+
+
{{ .Content }}
+
+
+
+ {{ range .Params.testimonial_item }} +
+
+
+ + +

{{ .content | markdownify }}

+ +
+ +
+ +
+ {{ end }} +
+
+
+ + + +{{if .Params.featured_testimonial.enable }} +{{with .Params.featured_testimonial }} +
+
+
+
+
+ {{ if .video.enable }} + {{ with .video }} + + {{ end }} + {{ end }} + +
+
+
+
+

{{ .quote | markdownify }}

+

+ {{ .name }} + {{ .designation | markdownify }} +

+
+
+
+
+
+{{ end }} +{{ end }} + + +{{ end }} \ No newline at end of file