1
Fork 0

Add accounts to about page

This commit is contained in:
Jake Howard 2017-02-10 22:14:10 +00:00
parent c2b14808f8
commit 411870b4bd
2 changed files with 22 additions and 22 deletions

View file

@ -49,13 +49,13 @@ accounts:
- fa-trello
freenode:
- Freenode IRC
- Freenode
- TheOrangeOne
- https://webchat.freenode.net/
- fa-rss
atomio:
- AtomIO Slack
- Atom Slack
- TheOrangeOne
- https://atomio.slack.com/
- fa-slack
@ -76,7 +76,7 @@ accounts:
- npm
- TheOrangeOne
- https://www.npmjs.com/~{0}/
- fa-file-code-io
- fa-file-code-o
footer_accounts:
- github

View file

@ -13,35 +13,35 @@
</div>
<script async defer src="//cdn.jsdelivr.net/github-cards/latest/widget.js"></script>
</section>
<section class="bg-primary" id="website">
<section class="bg-primary">
<div class="container">
<h2>Website</h2>
<h2>Personal Data</h2>
<p>
My website is the culmination of all my knowledge, compiled into 1 place. It not only contains all my projects, but is itself is a project.
In the interest of privacy, there's very little personal information here.
</p>
<p>
The site is primarily built with <a href="http://getpelican.com">Pelican</a>, a static site generator. This allows me to write nice clean, <i>DRY</i> content, and have it come out as clean, minified HTML.
</p>
<p>
The Javascript is built using <a href="http://browserify.org/">Browserify</a>, and the CSS is built using <a href="https://github.com/sass/node-sass">node-SCSS</a>. Both are run as a build step when pelican builds.
The information that is here is eitther not personal enough to bother protecting, or has been selectively chosen as nothing bad.
</p>
</div>
</section>
<section id="server">
<section id="skills">
<div class="container">
<h2>Server</h2>
<h2 class="section-heading">Accounts</h2>
<p>
The website is hosted on part of my dedicated server from <a href="https://www.soyoustart.com/en/">SoYouStart</a>, running an Ubuntu Server VM with <a href="http://dokku.viewdocs.io/dokku/">Dokku</a> installed.
These are all the accounts I run, all to do with various things. Take a look!
</p>
<p>
The prebuilt static files are served using a <a href="https://github.com/RealOrangeOne/tstatic">custom Express server</a>, to make the site as fast and effective as possible.
</p>
</div>
</section>
<section class="text-center">
<div class="container">
<div class="btn-group">
<a class="btn btn-github btn-xl" href="https://github.com/RealOrangeOne/theorangeone.net"><i class="fa fa-github fa-lg"></i> View Source</a>
<hr class="primary">
<div class="row text-center">
{% for key, account in ACCOUNTS.items() %}
<div class="col-sm-3 col-xs-6">
<div class="service-box">
<a href="{{ account.url }}">
<i class="fa fa-4x {{ account.icon }} text-primary"></i>
<h3>{{ account.site }}</h3>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</section>