Add accounts to about page
This commit is contained in:
parent
c2b14808f8
commit
411870b4bd
2 changed files with 22 additions and 22 deletions
|
@ -49,13 +49,13 @@ accounts:
|
||||||
- fa-trello
|
- fa-trello
|
||||||
|
|
||||||
freenode:
|
freenode:
|
||||||
- Freenode IRC
|
- Freenode
|
||||||
- TheOrangeOne
|
- TheOrangeOne
|
||||||
- https://webchat.freenode.net/
|
- https://webchat.freenode.net/
|
||||||
- fa-rss
|
- fa-rss
|
||||||
|
|
||||||
atomio:
|
atomio:
|
||||||
- AtomIO Slack
|
- Atom Slack
|
||||||
- TheOrangeOne
|
- TheOrangeOne
|
||||||
- https://atomio.slack.com/
|
- https://atomio.slack.com/
|
||||||
- fa-slack
|
- fa-slack
|
||||||
|
@ -76,7 +76,7 @@ accounts:
|
||||||
- npm
|
- npm
|
||||||
- TheOrangeOne
|
- TheOrangeOne
|
||||||
- https://www.npmjs.com/~{0}/
|
- https://www.npmjs.com/~{0}/
|
||||||
- fa-file-code-io
|
- fa-file-code-o
|
||||||
|
|
||||||
footer_accounts:
|
footer_accounts:
|
||||||
- github
|
- github
|
||||||
|
|
|
@ -13,35 +13,35 @@
|
||||||
</div>
|
</div>
|
||||||
<script async defer src="//cdn.jsdelivr.net/github-cards/latest/widget.js"></script>
|
<script async defer src="//cdn.jsdelivr.net/github-cards/latest/widget.js"></script>
|
||||||
</section>
|
</section>
|
||||||
<section class="bg-primary" id="website">
|
<section class="bg-primary">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2>Website</h2>
|
<h2>Personal Data</h2>
|
||||||
<p>
|
<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>
|
||||||
<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.
|
The information that is here is eitther not personal enough to bother protecting, or has been selectively chosen as nothing bad.
|
||||||
</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.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section id="server">
|
<section id="skills">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2>Server</h2>
|
<h2 class="section-heading">Accounts</h2>
|
||||||
<p>
|
<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>
|
||||||
<p>
|
<hr class="primary">
|
||||||
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.
|
<div class="row text-center">
|
||||||
</p>
|
{% for key, account in ACCOUNTS.items() %}
|
||||||
</div>
|
<div class="col-sm-3 col-xs-6">
|
||||||
</section>
|
<div class="service-box">
|
||||||
<section class="text-center">
|
<a href="{{ account.url }}">
|
||||||
<div class="container">
|
<i class="fa fa-4x {{ account.icon }} text-primary"></i>
|
||||||
<div class="btn-group">
|
<h3>{{ account.site }}</h3>
|
||||||
<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>
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
Reference in a new issue