48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<head>
|
|
<meta name="title" content="About" />
|
|
<meta name="no_container" content="true" />
|
|
</head>
|
|
<body>
|
|
<section id="me">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="text-center github-card-container">
|
|
<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>
|
|
<section class="bg-primary">
|
|
<div class="container">
|
|
<h2>Personal Data</h2>
|
|
<p>
|
|
In the interest of privacy, there's very little personal information here.
|
|
</p>
|
|
<p>
|
|
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="skills">
|
|
<div class="container">
|
|
<h2 class="section-heading">Accounts</h2>
|
|
<p>
|
|
These are all the accounts I run, all to do with various things. Take a look!
|
|
</p>
|
|
<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>
|
|
</body>
|