From 75083ebc09a3dd47099e3912ac090dbc907f3eaf Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 19 Apr 2012 16:31:19 +0000 Subject: [docs] Stub out structure for Sphinx-based docs. - Work in progress, this is just the basic structure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155132 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/_templates/index.html | 50 +++++++++++++++++++++++++++++++++++++++ docs/_templates/indexsidebar.html | 7 ++++++ docs/_templates/layout.html | 13 ++++++++++ 3 files changed, 70 insertions(+) create mode 100644 docs/_templates/index.html create mode 100644 docs/_templates/indexsidebar.html create mode 100644 docs/_templates/layout.html (limited to 'docs/_templates') diff --git a/docs/_templates/index.html b/docs/_templates/index.html new file mode 100644 index 0000000..efd2a15 --- /dev/null +++ b/docs/_templates/index.html @@ -0,0 +1,50 @@ +{# This template defines the 'index.html' page which we currently only use as + the entry point to the HTML-based documentation, but later can use to provide + an entry point for a Sphinx based LLVM website. + + Conceptually, this page is not supposed to be part of the documentation per + se (i.e., the content that would be rendered into a PDF, for example), but + rather provides entry points into the documentation and links to other + content which would only be part of the website. #} + +{% extends "layout.html" %} +{% set title = 'lld' %} +{% block body %} +

LLVM System Documentation

+ +

+ This is the front page for the Sphinx-based LLVM documentation. This is + currently a work in progress. +

+ +

Documentation

+ + + +
+ + + +
+ +

Source

+

LLVM is available via public SVN repository: + svn co + + http://llvm.org/svn/llvm-project/llvm/trunk.

+ +

LLVM source can be browsed + via ViewVC.

+ +

LLVM is also available via a read-only git mirror: + git clone + + http://llvm.org/git/llvm.git.

+ +{% endblock %} diff --git a/docs/_templates/indexsidebar.html b/docs/_templates/indexsidebar.html new file mode 100644 index 0000000..4161742 --- /dev/null +++ b/docs/_templates/indexsidebar.html @@ -0,0 +1,7 @@ +{# This template defines sidebar which can be used to provide common links on + all documentation pages. #} + +

Bugs

+ +

LLVM bugs should be reported to + Bugzilla.

diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..4999488 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,13 @@ +{% extends "!layout.html" %} + +{% block extrahead %} + +{% endblock %} + +{% block rootrellink %} +
  • LLVM Home | 
  • +
  • Documentation»
  • +{% endblock %} -- cgit v1.1