File: home_header.html

package info (click to toggle)
rocksdb 9.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 46,052 kB
  • sloc: cpp: 500,768; java: 42,992; ansic: 9,789; python: 8,373; perl: 5,822; sh: 4,921; makefile: 2,386; asm: 550; xml: 342
file content (22 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="homeContainer">
  <div class="homeSplashFade">
    <div id="home_wrap" class="wrapper homeWrapper">
      <div id="inner">
        <h2 id="project_tagline">{{ site.tagline }}</h2>
        <section id="intro">
          <p>{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}</p>
        </section>
        <div id="promo" class="section promoSection">
          {% for promo in site.data.promo %}
            <div class="promoRow">
            {% include plugins/{{promo.type}}.html href=promo.href text=promo.text children=promo.children %}
            </div>
          {% endfor %}
        </div>
      </div>
      <div class="projectLogo">
        <img src="{{ '/static/logo.svg' }}" alt="{{ site.title }}">
      </div>
    </div>
  </div>
</div>