devlopr 0.3.5 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -2
- data/_includes/algolia_search.html +63 -0
- data/_includes/author_bio.html +2 -1
- data/_includes/author_education.html +37 -0
- data/_includes/blog_post_article.html +3 -0
- data/_includes/blog_post_comments.html +18 -0
- data/_includes/blog_posts.html +11 -1
- data/_includes/blog_sidebar.html +9 -0
- data/_includes/blog_tags.html +8 -0
- data/_includes/github_follow_button.html +2 -0
- data/_includes/github_star_button.html +2 -0
- data/_includes/head.html +8 -0
- data/_includes/header.html +11 -2
- data/_includes/twitter_follow_button.html +1 -0
- data/_layouts/about_me.html +13 -0
- data/_layouts/blog.html +13 -5
- data/_layouts/default.html +1 -2
- data/_layouts/post.html +4 -0
- data/_layouts/search.html +7 -0
- data/_sass/devlog.scss +2 -0
- data/assets/img/education/iit.jpeg +0 -0
- data/assets/img/education/mit.png +0 -0
- data/assets/img/education/oxford.png +0 -0
- data/assets/img/posts/1.png +0 -0
- data/assets/img/posts/2.png +0 -0
- data/assets/img/posts/3.png +0 -0
- data/assets/img/posts/4.png +0 -0
- data/assets/img/posts/5.png +0 -0
- data/assets/img/posts/6.png +0 -0
- data/assets/img/posts/d1.png +0 -0
- data/assets/img/posts/d2.png +0 -0
- data/assets/img/posts/d3.png +0 -0
- data/assets/img/posts/d4.png +0 -0
- data/assets/img/posts/d5.png +0 -0
- data/assets/img/posts/d6.png +0 -0
- data/assets/img/posts/deploy-using-github-pages-and-travis.png +0 -0
- data/assets/img/posts/devlopr-starter.png +0 -0
- data/assets/img/posts/devlopr.png +0 -0
- metadata +62 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4127c542562ebd1b3e52cf15ae81721adf4548f543d08aa798cb034d7b826e67
|
4
|
+
data.tar.gz: c767cd708f1216b7a2ba272b26a6464a7409f39cbb88639acf7ba387c3d9d7f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 057df4bdf77254fa0ce5d051c6991d56ba90f2e26e04758c87b207aad7fb3c366f53b3a9bac045e0dce482d140fa458157d26014c08af6e8f72ebca26606b33d
|
7
|
+
data.tar.gz: '03131246329326980f02e0c3ef2f8a473168407859294363a7f5b09b69c4e0994fdb0b0ef711755e06740778241da4fbc160f684d3e7a468bda38496156302bd'
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
|
2
|
+
|
2
3
|
### Build a free blog using devlopr jekyll and Github Pages
|
3
4
|
|
4
5
|
|
@@ -8,9 +9,12 @@
|
|
8
9
|
|
9
10
|
### Demo - [here](https://devlopr.netlify.com)
|
10
11
|
|
11
|
-
##
|
12
|
+
## Create a new blog using devlopr-jekyll theme - [Guide](https://devlopr.netlify.com/guides/2017/11/19/build-a-blog-using-devlopr-jekyll)
|
13
|
+
|
14
|
+
## Deploy devlopr-jekyll blog using Github Pages and Travis CI - [Guide](https://devlopr.netlify.com/guides/2017/11/19/deploy-blog-using-devlopr-jekyll-and-github-pages)
|
12
15
|
|
13
|
-
|
16
|
+
|
17
|
+
## Screenshots:
|
14
18
|
|
15
19
|

|
16
20
|
|
@@ -21,6 +25,7 @@ Follow this : [Building a blog using devlopr jekyll theme and Github Pages](http
|
|
21
25
|

|
22
26
|
|
23
27
|
|
28
|
+
|
24
29
|
## Licence
|
25
30
|
|
26
31
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1,63 @@
|
|
1
|
+
<style>
|
2
|
+
#search-searchbar{
|
3
|
+
width: 100%;
|
4
|
+
text-align: center;
|
5
|
+
margin-top: 20px;
|
6
|
+
}
|
7
|
+
|
8
|
+
.ais-search-box {
|
9
|
+
margin-top: 15px;
|
10
|
+
margin-bottom: 15px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.ais-hits--item{
|
14
|
+
float:left;
|
15
|
+
}
|
16
|
+
|
17
|
+
</style>
|
18
|
+
|
19
|
+
<script>
|
20
|
+
/* Instanciating InstantSearch.js with Algolia credentials */
|
21
|
+
const search = instantsearch({
|
22
|
+
appId: '{{ site.algolia.application_id }}',
|
23
|
+
indexName: '{{ site.algolia.index_name }}',
|
24
|
+
apiKey: '{{ site.algolia.search_only_api_key }}'
|
25
|
+
});
|
26
|
+
|
27
|
+
search.addWidget(
|
28
|
+
instantsearch.widgets.searchBox({
|
29
|
+
container: '#search-searchbar',
|
30
|
+
placeholder: 'Search into posts...',
|
31
|
+
poweredBy: true
|
32
|
+
})
|
33
|
+
);
|
34
|
+
|
35
|
+
search.addWidget(
|
36
|
+
instantsearch.widgets.hits({
|
37
|
+
container: '#search-hits',
|
38
|
+
templates: {
|
39
|
+
item: function(hit) {
|
40
|
+
return `
|
41
|
+
<div class="card blog-post">
|
42
|
+
<img class="card-img-top" src="${ hit.thumbnail }" alt="${ hit.title }">
|
43
|
+
<div class="card-body center">
|
44
|
+
<img src="/assets/img/{{ site.author_logo }}" class="author-profile-img">
|
45
|
+
<h4 class="card-title">${ hit.title }</h4>
|
46
|
+
|
47
|
+
<h6 class="card-subtitle mb-2 text-muted">${moment.unix(hit.date).format('MMM D, YYYY')}</h6>
|
48
|
+
<p class="card-text">${hit.summary }</p>
|
49
|
+
|
50
|
+
<a href="${hit.url}" data-disqus-identifier="${hit.url}" class="btn btn-primary btn-sm">Read</a>
|
51
|
+
<span class="disqus-comment-count" data-disqus-identifier="${ hit.url }"></span>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
`;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
})
|
59
|
+
);
|
60
|
+
|
61
|
+
search.start();
|
62
|
+
|
63
|
+
</script>
|
data/_includes/author_bio.html
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
<p> {{ site.author_bio }}</p>
|
1
|
+
<p> {{ site.author_bio }}</p>
|
2
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<div class="col-md-2">
|
3
|
+
<img src="/assets/img/education/mit.png" class="company-logo" />
|
4
|
+
</div>
|
5
|
+
<div class="col-md-6">
|
6
|
+
<h4 class="experience-title"> Post Graduate in CS </h4>
|
7
|
+
<h6 class="experience-info">MIT</h6>
|
8
|
+
<p class="experience-desc"> Computer Science Scholar </p>
|
9
|
+
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
|
13
|
+
<br />
|
14
|
+
<div class="row">
|
15
|
+
<div class="col-md-2">
|
16
|
+
<img src="/assets/img/education/iit.jpeg" class="company-logo" />
|
17
|
+
</div>
|
18
|
+
<div class="col-md-6">
|
19
|
+
<h4 class="experience-title"> BTECH in CS</h4>
|
20
|
+
<h6 class="experience-info">IIT Kharagpur</h6>
|
21
|
+
<p class="experience-desc"> Computer Science Graduate </p>
|
22
|
+
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<br />
|
27
|
+
<div class="row">
|
28
|
+
<div class="col-md-2">
|
29
|
+
<img src="/assets/img/education/oxford.png" class="company-logo" />
|
30
|
+
</div>
|
31
|
+
<div class="col-md-6">
|
32
|
+
<h4 class="experience-title"> Computer Science </h4>
|
33
|
+
<h6 class="experience-info"> Oxford University </h6>
|
34
|
+
<p class="experience-desc"> High School </p>
|
35
|
+
|
36
|
+
</div>
|
37
|
+
</div>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<script>
|
2
|
+
var disqus_config = function () {
|
3
|
+
this.page.url = "{{ site.url }}{{ page.url }}"; /* Replace PAGE_URL with your page's canonical URL variable */
|
4
|
+
this.page.identifier = "{{ page.id }}"; /* Replace PAGE_IDENTIFIER with your page's unique identifier variable */
|
5
|
+
};
|
6
|
+
|
7
|
+
|
8
|
+
(function () { /* DON'T EDIT BELOW THIS LINE */
|
9
|
+
var d = document,
|
10
|
+
s = d.createElement('script');
|
11
|
+
s.src = 'https://{{ site.disqus_shortname }}.disqus.com/embed.js';
|
12
|
+
s.setAttribute('data-timestamp', +new Date());
|
13
|
+
(d.head || d.body).appendChild(s);
|
14
|
+
})();
|
15
|
+
</script>
|
16
|
+
<noscript>Please enable JavaScript to view the
|
17
|
+
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
|
18
|
+
</noscript>
|
data/_includes/blog_posts.html
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
+
<div class="row">
|
1
2
|
|
3
|
+
<div id="search-searchbar"></div>
|
4
|
+
|
5
|
+
</div>
|
6
|
+
<ul>
|
7
|
+
<div class="row">
|
8
|
+
<div id="search-hits"></div>
|
9
|
+
</div>
|
10
|
+
</ul>
|
11
|
+
<!--
|
2
12
|
<ul>
|
3
13
|
<div class="row">
|
4
14
|
{% for post in site.posts %}
|
@@ -19,4 +29,4 @@
|
|
19
29
|
|
20
30
|
{% endfor %}
|
21
31
|
</div>
|
22
|
-
</ul>
|
32
|
+
</ul> -->
|
data/_includes/blog_sidebar.html
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
+
|
1
2
|
<div class="col-lg-4">
|
2
3
|
<div class="card">
|
3
4
|
<div class="card-header"> About </div>
|
4
5
|
<div class="card-body text-dark">
|
5
6
|
<!-- Your Bio -->
|
6
7
|
<p> {{ site.author_bio }}</p>
|
8
|
+
|
9
|
+
{%- include github_star_button.html -%}
|
7
10
|
</div>
|
8
11
|
</div>
|
9
12
|
<div class="card">
|
@@ -12,4 +15,10 @@
|
|
12
15
|
{%- include blog_categories.html -%}
|
13
16
|
</div>
|
14
17
|
</div>
|
18
|
+
<div class="card">
|
19
|
+
<div class="card-header">Tags </div>
|
20
|
+
<div class="card-body text-dark">
|
21
|
+
{%- include blog_tags.html -%}
|
22
|
+
</div>
|
23
|
+
</div>
|
15
24
|
</div>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{% for tag in site.tags %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
2
|
+
<div id="#{{ tag_name | slugize }}"></div>
|
3
|
+
<li class="tag-head">
|
4
|
+
<a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
|
5
|
+
</li>
|
6
|
+
<a name="{{ tag_name | slugize }}"></a>
|
7
|
+
|
8
|
+
{% endfor %}
|
data/_includes/head.html
CHANGED
@@ -18,11 +18,19 @@
|
|
18
18
|
crossorigin="anonymous"></script>
|
19
19
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
|
20
20
|
crossorigin="anonymous"></script>
|
21
|
+
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
21
22
|
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
|
22
23
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
|
23
24
|
crossorigin="anonymous">
|
24
25
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
|
25
26
|
crossorigin="anonymous">
|
27
|
+
<!-- Including InstantSearch.js library and styling -->
|
28
|
+
<script src="https://cdn.jsdelivr.net/npm/instantsearch.js@2.6.0/dist/instantsearch.min.js"></script>
|
29
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment.min.js"></script>
|
30
|
+
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
|
31
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.6.0/dist/instantsearch.min.css">
|
32
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.6.0/dist/instantsearch-theme-algolia.min.css">
|
33
|
+
|
26
34
|
<script>
|
27
35
|
(function(d, h, m){
|
28
36
|
var js, fjs = d.getElementsByTagName(h)[0];
|
data/_includes/header.html
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
<img src="/assets/img/{{ site.author_logo }}" class="profile-img">
|
8
8
|
</a>
|
9
9
|
</div>
|
10
|
+
|
10
11
|
<div class="col-md-4">
|
11
12
|
<h1 class="profile-name"> {{ site.title }}</h1>
|
12
13
|
<p class="profile-bio"> {{ site.subtitle }}</p>
|
@@ -39,8 +40,16 @@
|
|
39
40
|
|
40
41
|
</div>
|
41
42
|
<div class="col-md-6 center">
|
42
|
-
|
43
|
+
|
43
44
|
<ul class="nav justify-content-end" id="navigation">
|
45
|
+
{% for item in site.menus.header %}
|
46
|
+
<li class="nav-item menu-item-{{ loop.index }}">
|
47
|
+
<a class="nav-link" href="{{ item.url }}" title="Go to {{ item.title }}">{{ item.title }}</a>
|
48
|
+
</li>
|
49
|
+
{% endfor %}
|
50
|
+
</ul>
|
51
|
+
|
52
|
+
<!-- <ul class="nav justify-content-end" id="navigation">
|
44
53
|
{%- assign default_paths = site.pages | map: "path" -%} {%- assign page_paths = site.header_pages | default: default_paths-%}
|
45
54
|
{%- if page_paths -%} {%- for path in page_paths -%} {%- assign my_page = site.pages | where: "path",path
|
46
55
|
| first -%} {%- if my_page.title -%}
|
@@ -49,7 +58,7 @@
|
|
49
58
|
</li>
|
50
59
|
{%- endif -%} {%- endfor -%}
|
51
60
|
|
52
|
-
</ul>
|
61
|
+
</ul> -->
|
53
62
|
|
54
63
|
{%- endif -%}
|
55
64
|
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="https://twitter.com/SujayKundu777?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-size="large" data-show-count="true">Follow @SujayKundu777</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
data/_layouts/about_me.html
CHANGED
@@ -7,12 +7,20 @@ layout: default
|
|
7
7
|
<div class="card">
|
8
8
|
<h1 class="card-title">About</h1>
|
9
9
|
{%- include author_bio.html -%}
|
10
|
+
|
11
|
+
|
10
12
|
</div>
|
13
|
+
|
11
14
|
<div class="card">
|
12
15
|
<h1 class="card-title"> Work Experience</h1>
|
13
16
|
<br />
|
14
17
|
{%- include author_work_experience.html -%}
|
15
18
|
</div>
|
19
|
+
<div class="card">
|
20
|
+
<h1 class="card-title"> Education </h1>
|
21
|
+
<br />
|
22
|
+
{%- include author_education.html -%}
|
23
|
+
</div>
|
16
24
|
</div>
|
17
25
|
<div class="col-lg-4">
|
18
26
|
|
@@ -24,6 +32,11 @@ layout: default
|
|
24
32
|
<i class="fas fa-envelope"></i> {{ site.author_email }}</h6>
|
25
33
|
<h6>
|
26
34
|
<i class="fas fa-link"></i> {{ site.author_website_url }} </h6>
|
35
|
+
|
36
|
+
{%- include github_follow_button.html -%}
|
37
|
+
|
38
|
+
{%- include twitter_follow_button.html -%}
|
39
|
+
|
27
40
|
|
28
41
|
</div>
|
29
42
|
|
data/_layouts/blog.html
CHANGED
@@ -1,16 +1,24 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
+
<div class="row">
|
4
5
|
|
5
|
-
|
6
|
+
|
7
|
+
</div>
|
6
8
|
|
9
|
+
<div class="row">
|
10
|
+
|
7
11
|
<div class="col-lg-8 col-md-4">
|
8
|
-
|
12
|
+
|
9
13
|
<!-- Blog Posts -->
|
10
|
-
|
11
|
-
|
14
|
+
|
15
|
+
{%- include blog_posts.html -%}
|
16
|
+
|
17
|
+
{%- include algolia_search.html -%}
|
12
18
|
</div>
|
13
19
|
|
14
20
|
|
15
21
|
{%- include blog_sidebar.html -%}
|
16
|
-
</div>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
|
data/_layouts/default.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/devlog.scss
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devlopr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sujay Kundu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll-sitemap
|
@@ -78,6 +78,40 @@ dependencies:
|
|
78
78
|
- - "~>"
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: 0.1.11
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: jekyll-algolia
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "~>"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '1.4'
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 1.4.11
|
91
|
+
type: :runtime
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '1.4'
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: 1.4.11
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: jekyll-menus
|
103
|
+
requirement: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - "~>"
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: 0.6.0
|
108
|
+
type: :runtime
|
109
|
+
prerelease: false
|
110
|
+
version_requirements: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - "~>"
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: 0.6.0
|
81
115
|
- !ruby/object:Gem::Dependency
|
82
116
|
name: jekyll
|
83
117
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,7 +170,9 @@ files:
|
|
136
170
|
- LICENSE.txt
|
137
171
|
- README.md
|
138
172
|
- _includes/ads.html
|
173
|
+
- _includes/algolia_search.html
|
139
174
|
- _includes/author_bio.html
|
175
|
+
- _includes/author_education.html
|
140
176
|
- _includes/author_projects.html
|
141
177
|
- _includes/author_skills.html
|
142
178
|
- _includes/author_work_experience.html
|
@@ -144,13 +180,18 @@ files:
|
|
144
180
|
- _includes/blog_newsletters.html
|
145
181
|
- _includes/blog_post_article.html
|
146
182
|
- _includes/blog_post_breadcrumb.html
|
183
|
+
- _includes/blog_post_comments.html
|
147
184
|
- _includes/blog_posts.html
|
148
185
|
- _includes/blog_sidebar.html
|
186
|
+
- _includes/blog_tags.html
|
149
187
|
- _includes/coding_activity.html
|
150
188
|
- _includes/contact_me_form.html
|
151
189
|
- _includes/footer.html
|
190
|
+
- _includes/github_follow_button.html
|
191
|
+
- _includes/github_star_button.html
|
152
192
|
- _includes/head.html
|
153
193
|
- _includes/header.html
|
194
|
+
- _includes/twitter_follow_button.html
|
154
195
|
- _layouts/about_me.html
|
155
196
|
- _layouts/blog.html
|
156
197
|
- _layouts/compress.html
|
@@ -159,9 +200,28 @@ files:
|
|
159
200
|
- _layouts/my_projects.html
|
160
201
|
- _layouts/page.html
|
161
202
|
- _layouts/post.html
|
203
|
+
- _layouts/search.html
|
162
204
|
- _sass/devlog.scss
|
163
205
|
- assets/css/main.scss
|
206
|
+
- assets/img/education/iit.jpeg
|
207
|
+
- assets/img/education/mit.png
|
208
|
+
- assets/img/education/oxford.png
|
164
209
|
- assets/img/favicon.ico
|
210
|
+
- assets/img/posts/1.png
|
211
|
+
- assets/img/posts/2.png
|
212
|
+
- assets/img/posts/3.png
|
213
|
+
- assets/img/posts/4.png
|
214
|
+
- assets/img/posts/5.png
|
215
|
+
- assets/img/posts/6.png
|
216
|
+
- assets/img/posts/d1.png
|
217
|
+
- assets/img/posts/d2.png
|
218
|
+
- assets/img/posts/d3.png
|
219
|
+
- assets/img/posts/d4.png
|
220
|
+
- assets/img/posts/d5.png
|
221
|
+
- assets/img/posts/d6.png
|
222
|
+
- assets/img/posts/deploy-using-github-pages-and-travis.png
|
223
|
+
- assets/img/posts/devlopr-starter.png
|
224
|
+
- assets/img/posts/devlopr.png
|
165
225
|
- assets/img/posts/hello.jpg
|
166
226
|
- assets/img/profile.png
|
167
227
|
- assets/img/projects/gamershub.png
|