Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - gitlab.com/kskarthik/resto-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dabd2a348c22775aebeb2d35df4310fae3906db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{{define "main"}}
<body data-spy="scroll" data-target="#navbar" class="static-layout">
       		<div class="hero">
      <div class="container">
        <div class="row d-flex align-items-center">
            <div class="col-lg-6 hero-left">
                <h1 class="display-4 mb-5">{{ .Site.Params.heroText | safeHTML }}</h1>
                <div class="mb-2">
                    <a class="btn btn-primary btn-shadow btn-lg" href="{{ .Site.BaseURL | absURL }}#gtco-menu" role="button">Explore Menu</a>
                    <a class="btn btn-icon btn-lg" href="{{.Site.Params.videoUrl}}" data-featherlight="iframe" data-featherlight-iframe-allowfullscreen="true">
                        <span class="lnr lnr-film-play"></span>
                        Play Video
                    </a>
                </div>
               
                <ul class="hero-info list-unstyled d-flex text-center mb-0">
                    <li class="border-right">
                        <span class="fa fa-rocket fa-2x"></span>
                        <h5>
                            Fast Delivery
                        </h5>
                    </li>
                    <li class="border-right">
                        <span class="fab fa-envira fa-2x"></span>
                        <h5>
                            Fresh Food
                        </h5>
                    </li>
                    <li class="">
                        <span class="far fa-comment fa-2x"></span>
                        <h5>
                            24/7 Support
                        </h5>
                    </li>
                </ul>
    
            </div>
            <div class="col-lg-6 hero-right">
                <div class="owl-carousel owl-theme hero-carousel">
                    <div class="item">
                        <img class="img-fluid" src='{{ "img/hero-1.jpg" | absURL }}' alt="">
                    </div>
                    <div class="item">
                        <img class="img-fluid" src='{{ "img/hero-2.jpg" | absURL }}' alt="">
                    </div>
                    <div class="item">
                        <img class="img-fluid" src='{{ "img/hero-3.jpg" | absURL }}' alt="">
                    </div>
                </div>
            </div>
        </div>
      </div>
    </div>	
    {{ partial "about.html" . }}	
    
    {{ partial "special.html" . }}
    
    {{ partial "menu.html" . }}

    {{ partial "testimonial.html" . }}

    {{ partial "team.html" . }}
                                    
    {{ partial "reserve.html" . }}
{{ end }}