Skip to content

Commit

Permalink
Extend copyright notices in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
borzunov committed Sep 1, 2015
1 parent 97bbff1 commit 6889d8d
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ Neque porro *quisquam* est, qui **dolorem** ipsum, quia ***dolor*** sit, amet, [
{% highlight c %}
static void asyncEnabled(Dict* args, void* vAdmin, String* txid, struct Allocator* requestAlloc)
{
struct Admin* admin = Identity_check((struct Admin*) vAdmin);
int64_t enabled = admin->asyncEnabled;
Dict d = Dict_CONST(String_CONST("asyncEnabled"), Int_OBJ(enabled), NULL);
Admin_sendMessage(&d, txid, admin);
struct Admin* admin = Identity_check((struct Admin*) vAdmin);
int64_t enabled = admin->asyncEnabled;
Dict d = Dict_CONST(String_CONST("asyncEnabled"), Int_OBJ(enabled), NULL);
Admin_sendMessage(&d, txid, admin);
}
{% endhighlight %}

Expand Down
8 changes: 0 additions & 8 deletions _includes/endfooter.html

This file was deleted.

55 changes: 37 additions & 18 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
<!-- Footer -->
<div class="row footer">
<div class="col-md-1"></div>
<div class="col-md-10">
<div class="row">
<div class="col-md-3">
<h4>Recent Posts</h4>
<ul>
{% for post in site.posts limit:4 %}
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="col-md-1"></div>
</div>
<!-- End Footer -->
<div class="col-md-12">
<div class="row footer">
<div class="col-md-1"></div>
<div class="col-md-10">
<div class="row">
<div class="col-md-3">
<h4>Recent Posts</h4>
<ul>
{% for post in site.posts limit:4 %}
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="col-md-1"></div>
</div>
</div>

<div class="col-md-12">
<div class="row end_footer">
<div class="col-md-1"></div>
<div class="col-md-6">
<p>
Copyright &copy; {{ site.title }} {{ site.time | date: '%Y' }}
</p>
</div>
<div class="col-md-4">
<p>
Built with <a href="https://jekyllrb.com/">Jekyll</a>.<br />
Theme based on <a href="https://github.com/pranavrajs/swift">Swift</a> by Pranav Raj S.<br />
Hosted on <a href="https://pages.github.com/">GitHub Pages</a>.
</p>
</div>
<div class="col-md-1"></div>
</div>
</div>
5 changes: 0 additions & 5 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ <h1>{{site.title}}</h1>
</div>
<div class="col-md-1"></div>
</div> -->
<div class="col-md-12">
{% include footer.html %}
</div>
<div class="col-md-12">
{% include endfooter.html %}
</div>
{% include include_js.html %}

</body>
Expand Down

0 comments on commit 6889d8d

Please sign in to comment.