Skip to content

Commit b61dbd7

Browse files
committed
?
0 parents  commit b61dbd7

27 files changed

+781
-0
lines changed

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages'

_config.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Site settings
2+
title: Asra Ali
3+
4+
baseurl: ""
5+
url: "https://asraa.github.io" # the base hostname & protocol for your site
6+
github_username: asraa
7+
8+
# Build settings
9+
markdown: kramdown

_config.yml~

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Site settings
2+
title: Asra Ali
3+
4+
baseurl: ""
5+
url: "https://localhost" # the base hostname & protocol for your site
6+
github_username: asraa
7+
8+
# Build settings
9+
markdown: kramdown

_includes/_site/footer.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<footer class="site-footer">
2+
<div class="date">
3+
<ul>
4+
<li>Asra Ali</li>
5+
<li>May 30, 2015</li>
6+
</ul>
7+
</div>
8+
</footer>

_includes/_site/head.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width">
4+
5+
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else
6+
%}{{ site.title }}{% endif %}</title>
7+
8+
<link rel="canonical" href="{{ page.url | replace:'index.html','' |
9+
prepend: site.utl }}">
10+
11+
<link rel="stylesheet" type="text/css" href="/css/main.css">
12+
<link rel="stylesheet" type="text/css" href="/css/syntax.css">
13+
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Mono">
14+
15+
16+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
17+
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
18+
19+
</head>

_includes/_site/header.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<header class="site-header">
2+
3+
<nav class="links-list site-nav">
4+
<ul>
5+
<li><a href="/">home</a></li>
6+
<li><a href="/about/">about</a></li>
7+
</ul>
8+
<ul>
9+
<li><a href="mailto:{{ site.email }}">email</a></li>
10+
<li><a href="//github.com/asraa">github</a></li>
11+
</ul>
12+
</nav>
13+
14+
</header>

_includes/footer.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<footer class="site-footer">
2+
<div class="date">
3+
<ul>
4+
<li>Asra Ali</li>
5+
<li>May 30, 2015</li>
6+
</ul>
7+
</div>
8+
</footer>

_includes/footer.html~

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<footer class="site-footer">
2+
<div class="date">
3+
<ul>
4+
<li>Asra Ali</li>
5+
<li>May 30, 2015</li>
6+
</ul>
7+
</div>
8+
</footer>

_includes/head.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width">
4+
5+
6+
<title>Asra Ali</title>
7+
8+
9+
10+
11+
12+
<link rel="stylesheet" type="text/css" href="/css/main.css">
13+
<link rel="stylesheet" type="text/css" href="/css/syntax.css">
14+
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Mono">
15+
16+
17+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
18+
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
19+
20+
</head>

_includes/head.html~

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width">
4+
5+
6+
<title>Asra Ali</title>
7+
8+
9+
<link rel="canonical" href="{{ page.url }}">
10+
11+
12+
<link rel="stylesheet" type="text/css" href="/css/main.css">
13+
<link rel="stylesheet" type="text/css" href="/css/syntax.css">
14+
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Mono">
15+
16+
17+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
18+
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
19+
20+
</head>

_includes/header.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<header class="site-header">
2+
3+
<nav class="links-list site-nav">
4+
<ul>
5+
<li><a href="/">home</a></li>
6+
<li><a href="/about/">about</a></li>
7+
</ul>
8+
<ul>
9+
<li><a href="mailto:{{ site.email }}">email</a></li>
10+
<li><a href="//github.com/asraa">github</a></li>
11+
</ul>
12+
</nav>
13+
14+
</header>

_includes/header.html~

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<header class="site-header">
2+
3+
<nav class="links-list site-nav">
4+
<ul>
5+

_layouts/default.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
<div class="wrapper">
9+
{% include header.html %}
10+
11+
<div class="page-content">
12+
{{ content }}
13+
14+
<div class="push"></div>
15+
</div>
16+
</div>
17+
18+
{% include footer.html %}
19+
20+
</body>
21+
22+
</html>

_layouts/default.html~

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
<div class="wrapper">
9+
<% include header.html %}
10+
11+
<div class="page-content">
12+
{{ content }}
13+
14+
<div class="push"></div>
15+
</div>
16+
</div>
17+
18+
{% include footer.html %}
19+
20+
</body>
21+
22+
</html>

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

_layouts/post.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="post">
6+
7+
<h1>{{ page.title }}</h1>
8+
<div class="post-wrapper">
9+
<div class-"post-meta">
10+
<span>{{ page.date | date: "%b %-d, %Y" }}</span>
11+
</div>
12+
13+
<article class="post-content">
14+
{{ content }}
15+
</article>
16+
17+
</div>
18+
19+
</div>

_layouts/post.html~

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="post">
6+
7+
<h1>{{ page.title}}</h1>
8+
<div class="post-wrapper">
9+
<div class-"post-meta">
10+
<span>{{ page.date | date: "%b %-d, %Y" }}</span>
11+
</div>
12+
13+
<article class="post-content">
14+
{{content }}
15+
</article>
16+
17+
</div>
18+
19+
</div>

_posts/2015-05-30-website.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: post
3+
title: beginnings
4+
---
5+
6+
This is my post about this post.
7+
8+
9+
It's my first post, and I'll update this website with more posts, projects, and other features.

_posts/2015-05-30-website.md~

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: post
3+
title: First Post
4+
---
5+
6+
This is my post about this post.
7+
8+
9+
It's my first post, and I'll update this website with more posts, projects, and other features.

_site/2015/05/30/website.html

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width">
7+
8+
9+
<title>Asra Ali</title>
10+
11+
12+
13+
14+
15+
<link rel="stylesheet" type="text/css" href="/css/main.css">
16+
<link rel="stylesheet" type="text/css" href="/css/syntax.css">
17+
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Mono">
18+
19+
20+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
21+
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
22+
23+
</head>
24+
25+
26+
<body>
27+
28+
<div class="wrapper">
29+
<header class="site-header">
30+
31+
<nav class="links-list site-nav">
32+
<ul>
33+
<li><a href="/">home</a></li>
34+
<li><a href="/about/">about</a></li>
35+
</ul>
36+
<ul>
37+
<li><a href="mailto:[email protected]">email</a></li>
38+
<li><a href="//github.com/asraa">github</a></li>
39+
</ul>
40+
</nav>
41+
42+
</header>
43+
44+
45+
<div class="page-content">
46+
<div class="post">
47+
48+
<h1>beginnings</h1>
49+
<div class="post-wrapper">
50+
<div class-"post-meta">
51+
<span>May 30, 2015</span>
52+
</div>
53+
54+
<article class="post-content">
55+
<p>This is my post about this post.</p>
56+
57+
<p>It’s my first post, and I’ll update this website with more posts, projects, and other features.</p>
58+
59+
</article>
60+
61+
</div>
62+
63+
</div>
64+
65+
66+
<div class="push"></div>
67+
</div>
68+
</div>
69+
70+
<footer class="site-footer">
71+
<div class="date">
72+
<ul>
73+
<li>Asra Ali</li>
74+
<li>May 30, 2015</li>
75+
</ul>
76+
</div>
77+
</footer>
78+
79+
80+
</body>
81+
82+
</html>

0 commit comments

Comments
 (0)