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

default.html « _layouts - github.com/twbs/bootstrap-expo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f1cea71c81f3bf740800468917d8640a718a645 (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
<!DOCTYPE html>
<html lang="en">
  <head>
    {% include header.html %}
  </head>
  <body>

    <div class="masthead">
      <div class="container-fluid">
        <h1 class="masthead-title">
          <a href="/">{{ site.name }}</a>
        </h1>
        <p class="masthead-lead">
          Beautiful and inspiring examples of using <a href="http://getbootstrap.com">Bootstrap</a>, curated by project co-creator, <a href="https://twitter.com/mdo">@mdo</a>.
        </p>
        {% include carbonads.html %}
      </div>
    </div>

    <div class="container-fluid">
      {{ content }}

      <div class="paginator">
        {% if paginator.next_page %}
          <a href="/page{{paginator.next_page}}" class="paginate older">Older</a>
        {% else %}
          <span class="paginate next">Older</span>
        {% endif %}

        {% if paginator.previous_page %}
          {% if paginator.page == 2 %}
            <a href="/" class="paginate newer">Newer</a>
          {% else %}
            <a href="/page{{paginator.previous_page}}" class="paginate newer">Newer</a>
          {% endif %}
        {% else %}
          <span class="paginate previous">Newer</span>
        {% endif %}
      </div>
    </div>

    {% include footer.html %}

  </body>
</html>