libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

default.html (1551B)


      1 <!doctype html>
      2 <html>
      3   <head>
      4     <meta charset="utf-8">
      5     <title>{{ page.title }} - cwalk</title>
      6     <meta name="description" content="{{ page.description }}" /> 
      7     <meta name="viewport" content="width=device-width, initial-scale=1">
      8     <link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
      9     <link href="{{ site.baseurl }}/assets/css/default.css?v4" rel="stylesheet" type="text/css">
     10     <link href="{{ site.baseurl }}/assets/css/monakai.css" rel="stylesheet" type="text/css">
     11     <link rel="shortcut icon" href="{{ site.baseurl }}/assets/img/favicon.png">
     12     <script async src="https://www.googletagmanager.com/gtag/js?id=UA-127837944-1"></script>
     13     <script>
     14       window.dataLayer = window.dataLayer || [];
     15       function gtag(){dataLayer.push(arguments);}
     16       gtag('js', new Date());
     17 
     18       gtag('config', 'UA-127837944-1');
     19     </script>
     20   </head>
     21   <body>
     22     <header>
     23       <div class="inner">
     24       <a href="{{ site.baseurl }}{% link index.md %}" class="logo">cwalk</a>
     25       <nav>
     26         <a href="{{ site.baseurl }}{% link build.md %}">build</a>
     27         <a href="{{ site.baseurl }}{% link embed.md %}">embed</a>
     28         <a href="{{ site.baseurl }}{% link reference/index.md %}">reference</a>
     29       </nav>
     30       </div>
     31     </header>
     32     <div class="main">
     33       <div class="content">
     34         <h1>{{ page.title }}</h1>
     35         {{ content }}
     36       </div>
     37     </div>
     38   </body>
     39   <footer>
     40     find this repository on <a href="https://github.com/likle/cwalk/tree/master">github</a>
     41   </footer>
     42 </html>