header.html 2.32 KB
Newer Older
1 2 3 4 5 6 7 8
<!DOCTYPE html>
<html>

  <head>
    <meta charset='utf-8' />
    <meta http-equiv="X-UA-Compatible" content="chrome=1" />
    <meta name="viewport" content="width=480">

9
    <link rel="stylesheet" type="text/css" media="screen" href="{{ site.baseurl }}stylesheets/stylesheet.css">
10

Kenton Varda's avatar
Kenton Varda committed
11
    <title>Cap'n Proto: {{ page.title }}</title>
12

13
    <script type="text/javascript" src="{{ site.baseurl }}javascripts/main.js"></script>
14 15 16 17 18 19 20
  </head>

  <body class="desktop">

    <!-- HEADER -->
    <div id="header_wrap" class="outer">
      <header class="inner">
Kenton Varda's avatar
Kenton Varda committed
21
        <img src="{{ site.baseurl }}images/logo.png">
22
        <div id="infinitely_faster">
23
          <img src="{{ site.baseurl }}images/infinitely_faster.png">
24 25 26 27 28 29
        </div>
      </header>
      <a id="discuss_banner" href="https://groups.google.com/group/capnproto">Discuss on Groups</a>
      <a id="forkme_banner" href="https://github.com/kentonv/capnproto">View on GitHub</a>
    </div>

30 31 32 33 34 35 36 37 38
    {% if site.is_next %}
    <div id="next_banner">
      <h1>PREVIEW</h1>
      <p>You are looking at the site as it will appear after the next release.  This is a draft
         version that may be incomplete, buggy, or not yet applicable.  To look at the current
         site, <a href="../">click here</a>.
    </div>
    {% endif %}

39 40 41 42 43
    <!-- MAIN CONTENT -->
    <div id="main_content_wrap" class="outer">

      <section id="menu">
        <ul>
44 45 46 47 48 49
          <li><a href="{{ site.baseurl }}index.html">Introduction</a></li>
          <li><a href="{{ site.baseurl }}news/">News</a></li>
          <li><a href="{{ site.baseurl }}install.html">Installation</a></li>
          <li><a href="{{ site.baseurl }}language.html">Schema Language</a></li>
          <li><a href="{{ site.baseurl }}encoding.html">Encoding</a></li>
          <li><a href="{{ site.baseurl }}rpc.html">RPC Protocol</a></li>
50
          <li><a href="{{ site.baseurl }}capnp-tool.html">The <code>capnp</code> Tool</a></li>
Kenton Varda's avatar
Kenton Varda committed
51 52
          <li><a href="{{ site.baseurl }}cxx.html">C++ Serialization</a></li>
          <li><a href="{{ site.baseurl }}cxxrpc.html">C++ RPC</a></li>
53
          <li><a href="{{ site.baseurl }}otherlang.html">Other Languages</a></li>
Kenton Varda's avatar
Kenton Varda committed
54
          <li><a href="{{ site.baseurl }}roadmap.html">Road Map</a></li>
55
          <li><a href="{{ site.baseurl }}faq.html">FAQ</a></li>
56 57 58
        </ul>
      </section>
      <section id="main_content" class="inner">