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

recent-posts.html « partials « layouts - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: feeca20161fa4c9a57b0491c05af65ecc648290a (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
66
67
68
69
70
71
72
  <!-- RECENT POSTS START -->
  <div class="container-fluid recent-posts bg-white anchor pb-5">
    <h1 class="text-center">Recent Posts</h1>
    <div class="container">
      <div class="row" id="recent-posts">
        <div class="col-lg-4 col-md-6 pt-2">
          <div class="card">
            <div class="card-head">
              <img class="card-img-top" src="assets/images/background/bird.jpg" alt="Card image cap" />
            </div>
            <div class="card-body">
              <h5 class="card-title">
                How to Build Multi-stage Docker Image
              </h5>
              <p class="card-text post-summery">
                Some quick example text to build on the card title and make up
                the bulk of the card's content.
              </p>
            </div>
            <div class="card-footer">
              <span class="float-left">November 12, 2019</span>
              <a href="#" class="float-right btn btn-outline-info btn-sm">Details</a>
            </div>
          </div>
        </div>
        <div class="col-lg-4 col-md-6 pt-2">
          <div class="card">
            <div class="card-head">
              <img class="card-img-top" src="assets/images/recent-posts/docker-2.png" alt="Card image cap" />
            </div>
            <div class="card-body">
              <h5 class="card-title">
                How to Build Multi-stage Docker Image
              </h5>
              <p class="card-text post-summery">
                Some quick example text to build on the card title and make up
                the bulk of the card's content. Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus
                corporis sint voluptates maiores expedita, id ullam, maxime sit eaque eius earum, consectetur blanditiis
                nulla ex aliquam dolor libero. Inventore, maiores.
              </p>
            </div>
            <div class="card-footer">
              <span class="float-left">November 12, 2019</span>
              <a href="#" class="float-right btn btn-outline-info btn-sm">Details</a>
            </div>
          </div>
        </div>
        <div class="col-lg-4 col-md-6 pt-2">
          <div class="card">
            <div class="card-head">
              <img class="card-img-top" src="assets/images/recent-posts/kubernetes.png" alt="Card image cap" />
            </div>
            <div class="card-body">
              <h5 class="card-title">
                How to Build Multi-stage Docker Image
              </h5>
              <p class="card-text post-summery">
                Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis veritatis sapiente fuga
                aspernatur adipisci dolor, et doloremque quos eos incidunt? Earum, debitis explicabo. Obcaecati eligendi
                placeat eos quod laboriosam quia.
              </p>
            </div>
            <div class="card-footer">
              <span class="float-left">November 12, 2019</span>
              <a href="#" class="float-right btn btn-outline-info btn-sm">Details</a>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <!-- RECENT POSTS END -->