Skip to content

Commit

Permalink
Moving things.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDiBernardo committed Aug 30, 2015
1 parent d388555 commit 9bfbc43
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 26 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="provenance" content="$Id: index.html 1472 2012-09-21 22:17:41Z audrey $" />
<link rel="stylesheet" href="/theme/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="/theme/css/bootstrap-responsive.css" type="text/css" />
<link rel="stylesheet" href="/theme/css/code.css" type="text/css" />
<link rel="stylesheet" href="/theme/posa.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap-responsive.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/code.css" type="text/css" />
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/500L.css" type="text/css" />
<title>{{ SITENAME }}{% if page is defined and page.title is defined %} | {{ page.title }}{% endif %}</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "posa.html" %}
{% extends "500L.html" %}
{% block content %}
<div class="row">
<div class='span10 offset1' id='content' align='center'>
Expand All @@ -17,4 +17,4 @@
</table>
</div>
</div>
{% endblock content %}
{% endblock content %}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "posa.html" %}
{% extends "500L.html" %}
{% block header %}
<div class="hero-unit">
<a class='pull-right' href='/en/index.html'><img src="/images/posa-titlebar.png" /></a>
<a class='pull-right' href='/en/index.html'></a>
<h1>{{ page.title }}</h1>
<h2 class="author">{{ page.author }}</h2>
<blockquote class="pull-right">
Expand Down
19 changes: 4 additions & 15 deletions html/pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals

AUTHOR = u'Tavish Armstrong'
SITENAME = u'The Performance of Open Source Software'
AUTHOR = u'Michael DiBernardo'
SITENAME = u'500 Lines or Less'
SITEURL = ''

TIMEZONE = 'Europe/Paris'
Expand All @@ -16,24 +16,13 @@
TRANSLATION_FEED_ATOM = None

STATIC_PATHS = [
# 'chrome-images',
# 'ethercalc-images',
# 'infinispan-images',
# 'khmer-images',
# 'memshrink-images',
# 'mobile-perf-images',
# 'pugixml-images',
# 'talos-images',
# 'warp-images',
# 'zotonic-images',
]
]


DEFAULT_PAGINATION = False

THEME = 'posa'
THEME = '500L'

# TODO This turns --- into &mdash;. Why? :(
TYPOGRIFY = True

EXTENSIONS = ('latex',)
Expand Down
9 changes: 6 additions & 3 deletions html/publishconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
sys.path.append(os.curdir)
from pelicanconf import *

SITEURL = 'http://theperformanceofopensourcesoftware.com'
SITEURL = 'http://aosabook.org/en/500L'
RELATIVE_URLS = False

FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None

DELETE_OUTPUT_DIRECTORY = True

Expand Down

0 comments on commit 9bfbc43

Please sign in to comment.