1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/content/pages/about.html

53 lines
1.7 KiB
HTML
Raw Normal View History

2016-05-20 08:51:27 +01:00
<head>
2017-02-11 16:14:20 +00:00
<meta name="title" content="About Me" />
2016-06-16 18:46:18 +01:00
<meta name="no_container" content="true" />
2016-05-20 08:51:27 +01:00
</head>
<body>
2016-05-26 22:22:15 +01:00
<section id="me">
2016-05-24 09:06:14 +01:00
<div class="container">
<div class="row">
2017-01-31 21:04:51 +00:00
<div class="text-center github-card-container">
2016-05-24 09:06:14 +01:00
<div data-theme="medium" data-github="RealOrangeOne" class="github-card"></div>
</div>
</div>
</div>
<script async defer src="//cdn.jsdelivr.net/github-cards/latest/widget.js"></script>
</section>
2017-02-10 22:14:10 +00:00
<section class="bg-primary">
2016-05-24 09:06:14 +01:00
<div class="container">
2017-02-11 16:14:20 +00:00
<h2 class="section-heading">Personal Data</h2>
2016-05-24 09:06:14 +01:00
<p>
2017-02-10 22:14:10 +00:00
In the interest of privacy, there's very little personal information here.
2016-05-24 09:06:14 +01:00
</p>
<p>
2017-02-10 22:14:10 +00:00
The information that is here is eitther not personal enough to bother protecting, or has been selectively chosen as nothing bad.
2016-05-24 09:06:14 +01:00
</p>
</div>
</section>
2017-02-11 16:14:20 +00:00
<section>
2016-05-24 09:06:14 +01:00
<div class="container">
2017-02-10 22:14:10 +00:00
<h2 class="section-heading">Accounts</h2>
2016-05-24 09:06:14 +01:00
<p>
2017-02-10 22:14:10 +00:00
These are all the accounts I run, all to do with various things. Take a look!
2016-05-24 09:06:14 +01:00
</p>
2017-02-10 22:14:10 +00:00
<div class="row text-center">
2017-02-11 21:48:44 +00:00
{% for account in ACCOUNTS.values()|sort(attribute='site') %}
2017-02-10 22:14:10 +00:00
<div class="col-sm-3 col-xs-6">
2017-02-11 16:14:20 +00:00
<div class="service-box account">
<a href="{{ account.url }}" class="no-underline">
<i class="fa fa-4x {{ account.icon }}"></i>
2017-02-10 22:14:10 +00:00
<h3>{{ account.site }}</h3>
</a>
</div>
</div>
{% endfor %}
2017-01-31 21:04:51 +00:00
</div>
</div>
</section>
2017-02-11 16:14:20 +00:00
<section class="bg-primary text-center">
<div class="container">
<a class="btn btn-primary-dark btn-xl" href="/contact/">Contact Me</a>
</div>
</section>
2016-05-20 08:51:27 +01:00
</body>