-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
75 lines (75 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
layout: null
---
<head>
<link href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<script src="script.js"></script>
<!--Icons-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body id="body" class="main-page">
<div class="feature-a">
<div class="banner-image"></div>
<div class="banner-overlay"></div>
<section class="feature-a-header">
<h1>Sleepy Flower Girl</h1>
<h2>Programmer</h2>
<p>
<a href="https://github.com/yourWaifu"><i class="fab fa-github"></i></i></a>
<br>
</p>
</section>
<section class="feature-a-text">
<p>I'm an amateur computer programmer who enjoys programming in C and C++. I like studying the complexities of how computers operate to improve the software and technology of tomorrow.</p>
</section>
</div>
<h1>Repositories</h1>
<table id="repositories" class="repositories">
<tbody id="repositories-tbody">
{% assign sorted_repo = (site.github.public_repositories | sort: 'pushed_at') | reverse %}
{% for repository in sorted_repo %}
{% if repository.fork == false %}
<tr>
<td>
{% if repository.homepage and repository.homepage != "" %}
<a href="{{ repository.homepage }}">
{{ repository.name }}
</a>
{% else %}
{{ repository.name }}
{% endif %}
</td>
<td>
{{ repository.description }}
</td>
<td>
<a href="{{ repository.html_url }}">
<i class="fab fa-github"></i>
<span class="github-link">View on GitHub</span>
</a>
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<table id="repositories" class="repositories"></table>
<h1>Articles</h1>
<table class="article-list">
{% for post in site.posts %}
<tr>
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
<td>{{ post.date | date_to_string }}<br></td>
</tr>
{% endfor %}
</table>
</body>