Skip to content

Commit 905e526

Browse files
committedJul 5, 2015
Add the old bootstrap theme (getnikola/nikola#1865)
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 4d73395 commit 905e526

File tree

137 files changed

+45397
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+45397
-2
lines changed
 

‎scripts/build_site.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def error(msg):
3131
print(colorama.Fore.RED + "ERROR:" + msg)
3232

3333
def theme_list():
34-
return sorted(['base', 'base-jinja', 'bootstrap', 'bootstrap-jinja', 'bootstrap3', 'bootstrap3-jinja'] + [theme.split('/')[-1] for theme in glob.glob(GLOB)])
34+
return sorted(['base', 'base-jinja', 'bootstrap3', 'bootstrap3-jinja'] + [theme.split('/')[-1] for theme in glob.glob(GLOB)])
3535

3636
def build_site():
3737
data = {}

‎scripts/build_themes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def error(msg):
2424
print(colorama.Fore.RED + "ERROR:" + msg)
2525

2626
def theme_list():
27-
return sorted(['base', 'base-jinja', 'bootstrap', 'bootstrap-jinja', 'bootstrap3', 'bootstrap3-jinja'] + [theme.split('/')[-1] for theme in glob.glob("v7/*")])
27+
return sorted(['base', 'base-jinja', 'bootstrap3', 'bootstrap3-jinja'] + [theme.split('/')[-1] for theme in glob.glob("v7/*")])
2828

2929
def build_theme(theme=None):
3030
if theme is None: # Check them all

0 commit comments

Comments
 (0)
Please sign in to comment.