diff --git a/docs/index.md b/docs/index.md index 9e936874..c52645ef 100644 --- a/docs/index.md +++ b/docs/index.md @@ -49,7 +49,7 @@ In order to run, mkdocs requires a single configuration file named `mkdocs.yaml` An sed aeque munere facilisi, modus tractatos quo ei. Eu veniam tincidunt cum. - project_name: 'Cat indexer' + site_name: 'Cat indexer' pages: - ['index.md', 'Home'] - ['about.md', 'About'] diff --git a/docs/user-guide/configuration.md b/docs/user-guide/configuration.md index ca10c25b..42e6d4fc 100644 --- a/docs/user-guide/configuration.md +++ b/docs/user-guide/configuration.md @@ -46,25 +46,25 @@ If you have a lot of project documentation you might choose to use headings to b ## Project metadata -#### site_description - -Eam no quis bonorum legendos. Eos prodesset cotidieque in, atqui saperet eos te. Sit eruditi fastidii detraxit cu, sed elit voluptatum in. Vel esse possim accumsan et, eam et amet nihil putent. Mei putent impetus no, iuvaret labores duo an. - -**default**: `null` - #### site_url Quo ex ceteros theophrastus, mel eius repudiandae an, has autem legendos ut. Eu quo moderatius interpretaris, pro ad homero tractatos cotidieque. His errem dictas instructior ad, tation causae ceteros ex eum. Nam falli dicunt te, mea et unum contentiones, ius noluisse rationibus cotidieque ei. **default**: `null` -#### site_favicon +#### site_description + +Eam no quis bonorum legendos. Eos prodesset cotidieque in, atqui saperet eos te. Sit eruditi fastidii detraxit cu, sed elit voluptatum in. Vel esse possim accumsan et, eam et amet nihil putent. Mei putent impetus no, iuvaret labores duo an. + +**default**: `null` + +#### site_author Sit eruditi fastidii detraxit cu, sed elit voluptatum in. Vel esse possim accumsan et, eam et amet nihil putent. **default**: `null` -#### site_author +#### site_favicon Sit eruditi fastidii detraxit cu, sed elit voluptatum in. Vel esse possim accumsan et, eam et amet nihil putent. diff --git a/mkdocs.yml b/mkdocs.yml index a0d0af96..db3fbbfd 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,8 +1,12 @@ -project_name: MkDocs +site_name: MkDocs +site_url: http://www.mkdocs.org/ +site_description: Project documentation with Markdown. + pages: - ['index.md', 'Introduction'] - ['user-guide/writing-your-docs.md', 'User Guide / Writing your docs'] - ['user-guide/styling-your-docs.md', 'User Guide / Styling your docs'] - ['user-guide/configuration.md', 'User Guide / Configuration'] - ['about/license.md', 'About / License'] + theme_dir: 'theme' diff --git a/mkdocs/build.py b/mkdocs/build.py index fd726170..5d9843a4 100644 --- a/mkdocs/build.py +++ b/mkdocs/build.py @@ -1,6 +1,7 @@ #coding: utf-8 from mkdocs import nav, toc, utils +from urlparse import urljoin import jinja2 import markdown import os @@ -40,6 +41,55 @@ def convert_markdown(markdown_source): return (html_content, table_of_contents, meta) +def get_context(page, content, nav, toc, meta, config): + site_name = config['site_name'] + + if page.is_homepage: + page_title = site_name + else: + page_title = page.title + ' - ' + site_name + + if page.is_homepage: + page_description = config['site_description'] + else: + page_description = None + + if config['site_url']: + base = config['site_url'] + if not base.endswith('/'): + base += '/' + canonical_url = urljoin(base, page.abs_url.lstrip('/')) + else: + canonical_url = None + + if config['site_favicon']: + favicon = nav.url_context.make_relative('/' + config['site_favicon']) + else: + favicon = None + + return { + 'site_name': site_name, + 'site_author': config['site_author'], + 'page_title': page_title, + 'page_description': page_description, + 'favicon': favicon, + + 'content': content, + 'toc': toc, + 'nav': nav, + 'meta': meta, + 'config': config, + + 'base_url': nav.url_context.make_relative('/'), + 'homepage_url': nav.homepage.url, + 'canonical_url': canonical_url, + + 'current_page': page, + 'previous_page': page.previous_page, + 'next_page': page.next_page, + } + + def build_pages(config): """ Builds all the pages and writes them into the build directory. @@ -60,22 +110,10 @@ def build_pages(config): html_content = re.sub(r'a href="([^"]*\.md)"', PathToURL(config), html_content) html_content = re.sub('
', '
', html_content)
 
-        context = {
-            'project_name': config['project_name'],
-            'page_title': config['project_name'] if page.is_homepage else page.title,
-            'content': html_content,
-
-            'toc': table_of_contents,
-            'nav': site_navigation,
-            'meta': meta,
-            'config': config,
-
-            'url': page.url,
-            'base_url': site_navigation.url_context.make_relative('/'),
-            'homepage_url': site_navigation.homepage.url,
-            'previous_url': page.previous_page and page.previous_page.url,
-            'next_url': page.next_page and page.next_page.url,
-        }
+        context = get_context(
+            page, html_content, site_navigation,
+            table_of_contents, meta, config
+        )
 
         # Allow 'template:' override in md source files.
         if 'template' in meta:
diff --git a/mkdocs/config.py b/mkdocs/config.py
index d3cb8d2a..57d17388 100644
--- a/mkdocs/config.py
+++ b/mkdocs/config.py
@@ -5,11 +5,15 @@ import yaml
 
 
 DEFAULT_CONFIG = {
-    'project_name': None,
+    'site_name': None,
     'pages': None,
 
-    'theme': 'bootstrap',
+    'site_url': None,
+    'site_description': None,
+    'site_author': None,
+    'site_favicon': None,
 
+    'theme': 'bootstrap',
     'docs_dir': 'docs',
     'site_dir': 'site',
     'theme_dir': None,
@@ -28,7 +32,7 @@ def load_config(filename='mkdocs.yml', options=None):
     config.update(user_config)
     config.update(options)
 
-    assert config['project_name'], "Config must contain 'project_name' setting."
+    assert config['site_name'], "Config must contain 'site_name' setting."
     assert config['pages'], "Config must contain 'pages' setting."
 
     if not config['theme_dir']:
diff --git a/mkdocs/themes/amelia/base.html b/mkdocs/themes/amelia/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/amelia/base.html
+++ b/mkdocs/themes/amelia/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/amelia/img/favicon.ico b/mkdocs/themes/amelia/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/amelia/img/favicon.ico differ
diff --git a/mkdocs/themes/amelia/nav.html b/mkdocs/themes/amelia/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/amelia/nav.html
+++ b/mkdocs/themes/amelia/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/bootstrap/base.html b/mkdocs/themes/bootstrap/base.html
index b6e41ede..9f2d7a73 100644
--- a/mkdocs/themes/bootstrap/base.html
+++ b/mkdocs/themes/bootstrap/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/bootstrap/img/favicon.ico b/mkdocs/themes/bootstrap/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/bootstrap/img/favicon.ico differ
diff --git a/mkdocs/themes/bootstrap/nav.html b/mkdocs/themes/bootstrap/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/bootstrap/nav.html
+++ b/mkdocs/themes/bootstrap/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/cerulean/base.html b/mkdocs/themes/cerulean/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/cerulean/base.html
+++ b/mkdocs/themes/cerulean/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/cerulean/img/favicon.ico b/mkdocs/themes/cerulean/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/cerulean/img/favicon.ico differ
diff --git a/mkdocs/themes/cerulean/nav.html b/mkdocs/themes/cerulean/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/cerulean/nav.html
+++ b/mkdocs/themes/cerulean/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/cosmo/base.html b/mkdocs/themes/cosmo/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/cosmo/base.html
+++ b/mkdocs/themes/cosmo/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/cosmo/img/favicon.ico b/mkdocs/themes/cosmo/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/cosmo/img/favicon.ico differ
diff --git a/mkdocs/themes/cosmo/nav.html b/mkdocs/themes/cosmo/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/cosmo/nav.html
+++ b/mkdocs/themes/cosmo/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/cyborg/base.html b/mkdocs/themes/cyborg/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/cyborg/base.html
+++ b/mkdocs/themes/cyborg/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/cyborg/img/favicon.ico b/mkdocs/themes/cyborg/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/cyborg/img/favicon.ico differ
diff --git a/mkdocs/themes/cyborg/nav.html b/mkdocs/themes/cyborg/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/cyborg/nav.html
+++ b/mkdocs/themes/cyborg/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/flatly/base.html b/mkdocs/themes/flatly/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/flatly/base.html
+++ b/mkdocs/themes/flatly/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/flatly/img/favicon.ico b/mkdocs/themes/flatly/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/flatly/img/favicon.ico differ
diff --git a/mkdocs/themes/flatly/nav.html b/mkdocs/themes/flatly/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/flatly/nav.html
+++ b/mkdocs/themes/flatly/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/journal/base.html b/mkdocs/themes/journal/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/journal/base.html
+++ b/mkdocs/themes/journal/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/journal/img/favicon.ico b/mkdocs/themes/journal/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/journal/img/favicon.ico differ
diff --git a/mkdocs/themes/journal/nav.html b/mkdocs/themes/journal/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/journal/nav.html
+++ b/mkdocs/themes/journal/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/readable/base.html b/mkdocs/themes/readable/base.html
index a18e92d2..dd663745 100644
--- a/mkdocs/themes/readable/base.html
+++ b/mkdocs/themes/readable/base.html
@@ -4,10 +4,11 @@
         
         
         
-        
-        
-        
-        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
         {{ page_title }}
 
diff --git a/mkdocs/themes/readable/img/favicon.ico b/mkdocs/themes/readable/img/favicon.ico
new file mode 100644
index 00000000..e85006a3
Binary files /dev/null and b/mkdocs/themes/readable/img/favicon.ico differ
diff --git a/mkdocs/themes/readable/nav.html b/mkdocs/themes/readable/nav.html
index 239e9234..46ce2715 100644
--- a/mkdocs/themes/readable/nav.html
+++ b/mkdocs/themes/readable/nav.html
@@ -11,7 +11,7 @@
             
 
             
-            {{ project_name }}
+            {{ site_name }}
         
 
         
diff --git a/mkdocs/themes/readthedocs/base.html b/mkdocs/themes/readthedocs/base.html
index b03a65eb..dd663745 100644
--- a/mkdocs/themes/readthedocs/base.html
+++ b/mkdocs/themes/readthedocs/base.html
@@ -1,61 +1,39 @@
 
-
-  
-
-  
-  
-  {% block htmltitle %}
-  {{ title|striptags|e }}{{ titlesuffix }}
-  {% endblock %}
+
+    
+        
+        
+        
+        {% if page_description %}{% endif %}
+        {% if site_author %}{% endif %}
+        {% if canonical_url %}{% endif %}
+        {% if favicon %}
+        {% else %}{% endif %}
 
-  {# CSS #}
-  
+        {{ page_title }}
 
-  
-  
+        
+        
+        
 
-  
+        
+        
+    
 
-
+    
 
-
-
-  
- - {# SIDE NAV, TOGGLES ON MOBILE #} - - -
- - {# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #} - - - {# PAGE CONTENT #} -
-
- {% include "breadcrumbs.html" %} -
- {{ content }} -
- {% include "footer.html" %} + {% include "nav.html" %} +
+
{% include "toc.html" %}
+
{% include "content.html" %}
-
-
- -
- + + + + + diff --git a/mkdocs/themes/readthedocs/img/favicon.ico b/mkdocs/themes/readthedocs/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/readthedocs/img/favicon.ico differ diff --git a/mkdocs/themes/simplex/base.html b/mkdocs/themes/simplex/base.html index a18e92d2..dd663745 100644 --- a/mkdocs/themes/simplex/base.html +++ b/mkdocs/themes/simplex/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/mkdocs/themes/simplex/img/favicon.ico b/mkdocs/themes/simplex/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/simplex/img/favicon.ico differ diff --git a/mkdocs/themes/simplex/nav.html b/mkdocs/themes/simplex/nav.html index 239e9234..46ce2715 100644 --- a/mkdocs/themes/simplex/nav.html +++ b/mkdocs/themes/simplex/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }} diff --git a/mkdocs/themes/slate/base.html b/mkdocs/themes/slate/base.html index a18e92d2..dd663745 100644 --- a/mkdocs/themes/slate/base.html +++ b/mkdocs/themes/slate/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/mkdocs/themes/slate/img/favicon.ico b/mkdocs/themes/slate/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/slate/img/favicon.ico differ diff --git a/mkdocs/themes/slate/nav.html b/mkdocs/themes/slate/nav.html index 239e9234..46ce2715 100644 --- a/mkdocs/themes/slate/nav.html +++ b/mkdocs/themes/slate/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }} diff --git a/mkdocs/themes/spacelab/base.html b/mkdocs/themes/spacelab/base.html index a18e92d2..dd663745 100644 --- a/mkdocs/themes/spacelab/base.html +++ b/mkdocs/themes/spacelab/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/mkdocs/themes/spacelab/img/favicon.ico b/mkdocs/themes/spacelab/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/spacelab/img/favicon.ico differ diff --git a/mkdocs/themes/spacelab/nav.html b/mkdocs/themes/spacelab/nav.html index 239e9234..46ce2715 100644 --- a/mkdocs/themes/spacelab/nav.html +++ b/mkdocs/themes/spacelab/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }} diff --git a/mkdocs/themes/united/base.html b/mkdocs/themes/united/base.html index a18e92d2..dd663745 100644 --- a/mkdocs/themes/united/base.html +++ b/mkdocs/themes/united/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/mkdocs/themes/united/img/favicon.ico b/mkdocs/themes/united/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/united/img/favicon.ico differ diff --git a/mkdocs/themes/united/nav.html b/mkdocs/themes/united/nav.html index 239e9234..46ce2715 100644 --- a/mkdocs/themes/united/nav.html +++ b/mkdocs/themes/united/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }} diff --git a/mkdocs/themes/yeti/base.html b/mkdocs/themes/yeti/base.html index a18e92d2..dd663745 100644 --- a/mkdocs/themes/yeti/base.html +++ b/mkdocs/themes/yeti/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/mkdocs/themes/yeti/img/favicon.ico b/mkdocs/themes/yeti/img/favicon.ico new file mode 100644 index 00000000..e85006a3 Binary files /dev/null and b/mkdocs/themes/yeti/img/favicon.ico differ diff --git a/mkdocs/themes/yeti/nav.html b/mkdocs/themes/yeti/nav.html index 239e9234..46ce2715 100644 --- a/mkdocs/themes/yeti/nav.html +++ b/mkdocs/themes/yeti/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }} diff --git a/theme/base.html b/theme/base.html index de6a5040..dd663745 100644 --- a/theme/base.html +++ b/theme/base.html @@ -4,10 +4,11 @@ - - - - + {% if page_description %}{% endif %} + {% if site_author %}{% endif %} + {% if canonical_url %}{% endif %} + {% if favicon %} + {% else %}{% endif %} {{ page_title }} diff --git a/theme/css/base.css b/theme/css/base.css index 0a886ee7..ee3f3e59 100644 --- a/theme/css/base.css +++ b/theme/css/base.css @@ -40,7 +40,7 @@ hr { } body { - background: url(/img/grid.png) repeat-x; + background: url(../img/grid.png) repeat-x; background-attachment: fixed; background-color: #f8f8f8; } diff --git a/theme/fonts/glyphicons-halflings-regular.eot b/theme/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 00000000..423bd5d3 Binary files /dev/null and b/theme/fonts/glyphicons-halflings-regular.eot differ diff --git a/theme/fonts/glyphicons-halflings-regular.svg b/theme/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 00000000..44694887 --- /dev/null +++ b/theme/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/fonts/glyphicons-halflings-regular.ttf b/theme/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 00000000..a498ef4e Binary files /dev/null and b/theme/fonts/glyphicons-halflings-regular.ttf differ diff --git a/theme/fonts/glyphicons-halflings-regular.woff b/theme/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 00000000..d83c539b Binary files /dev/null and b/theme/fonts/glyphicons-halflings-regular.woff differ diff --git a/theme/nav.html b/theme/nav.html index 239e9234..46ce2715 100644 --- a/theme/nav.html +++ b/theme/nav.html @@ -11,7 +11,7 @@ - {{ project_name }} + {{ site_name }}