find . -type f -exec sed -i s/James/Haldis/g {} \;

This commit is contained in:
Lorin Werthen 2015-04-03 18:41:44 +02:00
parent 037b7ee934
commit 113fbe98b9
5 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
James
Haldis
=======
James is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where.
Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where.
Start an order and let people add items with a simple mouse-click!
No more calculating prices and making lists!
Be lazier today!

View file

@ -27,7 +27,7 @@ class LocationAdminModel(ModelBaseView):
form_columns = ('name', 'address', 'website')
admin = Admin(app, name='James', url='/admin', template_mode='bootstrap3')
admin = Admin(app, name='Haldis', url='/admin', template_mode='bootstrap3')
admin.add_view(UserAdminModel(User, db.session))

View file

@ -3,5 +3,5 @@
{% block container %}
<h1>About</h1>
<p>This is James' about page. Doesn't he look good? Oh stop, you're making him blush.</p>
<p>This is Haldis' about page. Doesn't he look good? Oh stop, you're making him blush.</p>
{% endblock %}

View file

@ -6,7 +6,7 @@
{% block container %}
<div class="row">
<div class="jumbotron">
<h2>Hi, I'm James</h2>
<h2>Hi, I'm Haldis</h2>
<h3>What would you like to eat, sir?</h3>
</div>
</div>

View file

@ -13,7 +13,7 @@
{% set active_page = active_page|default('index') -%}
{% block title %}
James - {{ active_page|capitalize }}
Haldis - {{ active_page|capitalize }}
{% endblock %}
{% block styles %}
@ -72,8 +72,8 @@
<hr>
<div class="container">
<div class="pull-right">Made with ❤ by <a href="http://zeus.ugent.be">Zeus WPI</a></div>
<div class="pull-left"><a class="github-button" href="https://github.com/ZeusWPI/james" data-icon="octicon-star" data-style="mega" data-count-href="/ZeusWPI/James/stargazers" data-count-api="/repos/ZeusWPI/James#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star ZeusWPI/James on GitHub">Star</a></div>
<div class="text-center"><a href="http://github.com/ZeusWPI/James">© {{ ""|year }}</a></div>
<div class="pull-left"><a class="github-button" href="https://github.com/ZeusWPI/james" data-icon="octicon-star" data-style="mega" data-count-href="/ZeusWPI/Haldis/stargazers" data-count-api="/repos/ZeusWPI/Haldis#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star ZeusWPI/Haldis on GitHub">Star</a></div>
<div class="text-center"><a href="http://github.com/ZeusWPI/Haldis">© {{ ""|year }}</a></div>
</div>
</footer>
{%- endblock %}