提交 f34e38a4 编写于 作者: S Samy Pessé

Initial commit

上级
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directory
# Deployed apps should consider commenting this line out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules
# vim swapfile
*.swp
# GitBook Default Theme
👷 This repository is a work in progress, it'll be available with [GitBook v3](https://github.com/GitbookIO/gitbook/pull/1109)
<!DOCTYPE HTML>
<html lang="{{ book.language }}" {% if book.direction == "rtl" %}dir="rtl"{% endif %}>
<head>
<title>{% block title %}{{ book.title }}{% endblock %}</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="{% block description %}{{ book.description }}{% endblock %}">
<meta name="generator" content="GitBook {{ gitbook.version }}">
{% if book.author %}<meta name="author" content="{{ book.author }}">{% endif %}
{% if book.isbn %}<meta name="identifier" content="{{ book.isbn }}" scheme="ISBN">{% endif %}
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ staticBase }}/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="{{ staticBase }}/images/favicon.ico" type="image/x-icon">
{% block style %}{% endblock %}
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascript %}{% endblock %}
</body>
</html>
{% extends "layout.html" %}
{% block head %}
{{ super() }}
{% if page.next %}
<link rel="next" href="{{ page.next.path|resolveFile|contentURL }}" />
{% endif %}
{% if page.previous %}
<link rel="prev" href="{{ page.previous.path|resolveFile|contentURL }}" />
{% endif %}
{% endblock %}
{% block body %}
<div class="book">
</div>
{% endblock %}
{% macro articles(_articles) %}
{% for article in _articles %}
<li class="chapter {% if article.path == file.path %}active{% endif %}" data-level="{{ article.level }}" {% if article.path %}data-path="{{ article.path|contentURL }}"{% endif %}>
{% if article.path %}
<a href="{{ {{ article.path|resolveFile|contentURL }}">
{% else %}
<a target="_blank" href="{{ article.url }}">
{% endif %}
{% if item.level != "0" %}
<b>{{ item.level }}.</b>
{% endif %}
{{ item.title }}
</a>
{% if article.articles.length > 0 %}
<ul class="articles">
{{ articles(article.articles) }}
</ul>
{% endif %}
</li>
{% endfor %}
{% endmacro %}
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
{% for part in summary.parts %}
{{ articles(part.articles) }}
<li class="divider"></li>
{% endfor %}
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
{{ __("GITBOOK_LINK") }}
</a>
</li>
</ul>
</nav>
</ul>
\ No newline at end of file
{
"name": "gitbook-plugin-theme-default",
"description": "Default theme for GitBook > 3.0.0",
"engines": {
"gitbook": ">=3.0.0"
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册