Update to site
This commit is contained in:
parent
3345fa5897
commit
b0bdfe2fe9
244 changed files with 11618 additions and 12 deletions
17
source/_includes/asides/delicious.html
Normal file
17
source/_includes/asides/delicious.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{% if site.delicious_user %}
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">
|
||||
Delicious
|
||||
<small class="pull-right">
|
||||
<a class="btn" href="//delicious.com/{{ site.delicious_user }}" title="@{{ site.delicious_user }} on Delicious" target="_blank">
|
||||
<i class="icon-external-link"></i>
|
||||
</a>
|
||||
</small>
|
||||
</h1>
|
||||
<div id="delicious">
|
||||
<span class="loading">
|
||||
<i class="icon-spinner icon-spin"></i>
|
||||
</span>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
19
source/_includes/asides/github.html
Normal file
19
source/_includes/asides/github.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
{% if site.social.github.user %}
|
||||
<section id="github-repos" class="aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">
|
||||
GitHub Repos
|
||||
{% if site.social.github.show_profile_link or site.github_show_profile_link %}
|
||||
<small class="pull-right">
|
||||
<a class="btn" href="//github.com/{{ site.social.github.user }}" title="@{{ site.social.github.user }} on GitHub" target="_blank">
|
||||
<i class="icon-external-link"></i>
|
||||
</a>
|
||||
</small>
|
||||
{% endif %}
|
||||
</h1>
|
||||
<ul id="gh_repos" class="divided">
|
||||
<li class="loading">
|
||||
<i class="icon-spinner icon-spin"></i>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
{% endif %}
|
3
source/_includes/asides/googleplus.html
Normal file
3
source/_includes/asides/googleplus.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
{% comment %}
|
||||
This section intentionally blank.
|
||||
{% endcomment %}
|
17
source/_includes/asides/pinboard.html
Normal file
17
source/_includes/asides/pinboard.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{% if site.pinboard_user %}
|
||||
<section id="pinboard" class="aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">
|
||||
My Pinboard
|
||||
<small class="pull-right">
|
||||
<a class="btn" href="//pinboard.in/u:{{ site.pinboard_user }}" title="My Pinboard Bookmarks" target="_blank">
|
||||
<i class="icon-external-link"></i>
|
||||
</a>
|
||||
</small>
|
||||
</h1>
|
||||
<ul class="divided" id="pinboard_linkroll">
|
||||
<li class="loading">
|
||||
<i class="icon-spinner icon-spin"></i>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
{% endif %}
|
10
source/_includes/asides/recent_posts.html
Normal file
10
source/_includes/asides/recent_posts.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">Recent Posts</h1>
|
||||
<ul class="divided">
|
||||
{% for post in site.posts limit: site.recent_posts %}
|
||||
<li class="post">
|
||||
<a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
19
source/_includes/asides/social.html
Normal file
19
source/_includes/asides/social.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
{% unless site.social.visible == false %}
|
||||
<section class="social aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">
|
||||
{% if site.social.title %}{{ site.social.title }}{% else %}Follow me!{% endif %}
|
||||
</h1>
|
||||
<ul class="unstyled">
|
||||
{% if site.social.adn %}<li><a class="adn" rel="me" href="//alpha.app.net/{{ site.social.adn }}"><i class="icon-adn"></i> App.net</a></li>{% endif %}
|
||||
{% if site.social.dribbble %}<li><a class="dribbble" href="//dribbble.com/{{ site.social.dribbble }}"><i class="icon-dribbble"></i> Dribbble</a></li>{% endif %}
|
||||
{% if site.social.github.user %}<li><a class="github" href="//github.com/{{ site.social.github.user }}"><i class="icon-github"></i> Github</a></li>{% endif %}
|
||||
{% if site.social.facebook.user %}<li><a class="facebook" href="//facebook.com/{{ site.social.facebook.user }}"><i class="icon-facebook-sign"></i> Facebook</a></li>{% endif %}
|
||||
{% if site.social.googleplus %}<li><a class="gplus" href="//plus.google.com/{{ site.social.googleplus }}"><i class="icon-google-plus-sign"></i> Google+</a></li>{% endif %}
|
||||
{% if site.social.linkedin %}<li><a class="linkedin" href="//linkedin.com/in/{{ site.social.linkedin }}"><i class="icon-linkedin-sign"></i> LinkedIn</a></li>{% endif %}
|
||||
{% if site.social.pinterest %}<li><a class="pinterest" href="//pinterest.com/{{ site.social.pinterest }}"><i class="icon-pinterest"></i> Pinterest</a></li>{% endif %}
|
||||
{% if site.social.stackoverflow %}<li><a class="stackoverflow" href="//stackoverflow.com/users/{{ site.social.stackoverflow }}"><i class="icon-stackexchange"></i> StackOverflow</a></li>{% endif %}
|
||||
{% if site.social.twitter.user %}<li><a class="twitter" href="//twitter.com/{{ site.social.twitter.user }}"><i class="icon-twitter"></i> Twitter</a></li>{% endif %}
|
||||
{% if site.social.youtube %}<li><a class="youtube" href="//youtube.com/user/{{ site.social.youtube }}"><i class="icon-youtube"></i> YouTube</a></li>{% endif %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endunless %}
|
17
source/_includes/asides/twitter.html
Normal file
17
source/_includes/asides/twitter.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{% if site.social.twitter.user and site.social.twitter.widget.is_shown %}
|
||||
<section id="twitter-timeline" class="aside-module grid__item one-whole lap-one-half">
|
||||
<h1 class="title delta">
|
||||
Latest Tweets
|
||||
{% if site.social.twitter.widget.show_profile_link %}
|
||||
<small class="pull-right">
|
||||
<a class="btn" href="//twitter.com/{{ site.social.twitter.user }}" title="@{{ site.social.twitter.user }} on Twitter" target="_blank">
|
||||
<i class="icon-external-link"></i>
|
||||
</a>
|
||||
</small>
|
||||
{% endif %}
|
||||
</h1>
|
||||
|
||||
<a class="twitter-timeline" data-dnt="true" href="//twitter.com/{{ site.social.twitter.user }}" data-widget-id="{{ site.social.twitter.widget.widget_id }}" data-link-color="#049cdb" data-tweet-limit="{{ site.social.twitter.widget.tweet_count }}" data-chrome="noheader nofooter transparent noscrollbar">Tweets by @{{ site.social.twitter.user }}</a>
|
||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
|
||||
</section>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue