devlopr 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +39 -33
- data/_includes/activity.html +9 -0
- data/_includes/head.html +2 -0
- data/_includes/share.html +3 -3
- data/_layouts/blog.html +46 -38
- data/_layouts/home.html +26 -8
- data/_layouts/page.html +2 -2
- data/_layouts/post.html +2 -2
- data/_sass/devlog.scss +76 -29
- data/assets/img/favicon.ico +0 -0
- data/assets/img/{gitflow-workflow.png → posts/gitflow-workflow.png} +0 -0
- data/assets/img/posts/hello.jpg +0 -0
- data/assets/img/posts/useful-tools.jpg +0 -0
- data/assets/img/styleguide.png +0 -0
- data/assets/img/work/google.png +0 -0
- data/assets/img/work/microsoft.png +0 -0
- data/assets/img/work/skillenza.png +0 -0
- data/assets/img/zoom.jpg +0 -0
- metadata +12 -12
- data/assets/img/android-chrome-192x192.png +0 -0
- data/assets/img/android-chrome-512x512.png +0 -0
- data/assets/img/apple-touch-icon.png +0 -0
- data/assets/img/favicon-16x16.png +0 -0
- data/assets/img/favicon-32x32.png +0 -0
- data/assets/img/mstile-150x150.png +0 -0
- data/blog.md +0 -4
- data/contact.md +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1465270a630b20b9dc0a0dc6b29b93bc36726d5
|
4
|
+
data.tar.gz: db9c8e0ef51b094b29a6c489edef3c689222d125
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08d7bd64f60a5d2b087dc508ebd5f8617726ad20f77f83551b60c1b0c9b76e9f51ce73965e018cb1905fe1ab6e6023b45ffba331eb5f2a9d77a36f98a48aea86
|
7
|
+
data.tar.gz: 0ad29ab1dec906136d37303cfbe1bd8c8e35a2d44352451945af5a42d09c396eb6ce3c35972c777cf5b16ccda29242197c993e033de621acd84c3a17fc6689c3
|
data/README.md
CHANGED
@@ -1,23 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: Docs
|
4
|
+
---
|
4
5
|
|
5
|
-
|
6
|
+
# devlopr jekyll - Getting Started
|
6
7
|
|
7
|
-
|
8
|
+
[![Gem Version](https://badge.fury.io/rb/devlopr.svg)](https://badge.fury.io/rb/devlopr)
|
8
9
|
|
9
|
-
|
10
|
+
Anyone can use devlopr theme to build a personal <strong>Portfolio + Blog Type of Website</strong>, hosted freely on <b>Github Pages</b> or <b>Netlify </b>.
|
10
11
|
|
12
|
+
To get started follow the below given methods to get your devlopr mod jekyll website !
|
13
|
+
Many features are in our checklist, that needs to be worked upon and are in progress. And if you liked this project ! Do share with your developer friends and colleagues who may find it interesting :D
|
11
14
|
|
12
|
-
## Installation
|
15
|
+
## Method 1: Installation for new Jekyll Site using Rubygem
|
13
16
|
|
14
|
-
Add this line to your Jekyll site's
|
17
|
+
Add this line to your Jekyll site's Gemfile :
|
15
18
|
|
16
19
|
```ruby
|
17
20
|
gem "devlopr"
|
18
21
|
```
|
19
22
|
|
20
|
-
And add this line to your Jekyll site's
|
23
|
+
And add this line to your Jekyll site's _config.yml:
|
21
24
|
|
22
25
|
```yaml
|
23
26
|
theme: devlopr
|
@@ -25,38 +28,35 @@ theme: devlopr
|
|
25
28
|
|
26
29
|
And then execute:
|
27
30
|
|
28
|
-
|
31
|
+
`$ bundle`
|
29
32
|
|
30
33
|
Or install it yourself as:
|
31
34
|
|
32
|
-
|
33
|
-
|
34
|
-
## Usage
|
35
|
-
|
36
|
-
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
37
|
-
|
38
|
-
## Contributing
|
39
|
-
|
40
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
35
|
+
`$ gem install devlopr`
|
41
36
|
|
42
|
-
|
37
|
+
Run locally using :
|
43
38
|
|
44
|
-
|
39
|
+
`$ jekyll serve`
|
40
|
+
|
45
41
|
|
46
|
-
|
42
|
+
## Method 2: Easy Installation - Just Clone !!
|
47
43
|
|
48
|
-
|
49
|
-
To add a custom directory to your theme-gem, please edit the regexp in `devlopr.gemspec` accordingly.
|
44
|
+
All you need to do is clone this repo and customize the theme accordingly.
|
50
45
|
|
51
|
-
|
46
|
+
Clone the repo :
|
52
47
|
|
53
|
-
|
48
|
+
`$ git clone https://github.com/sujaykundu777/devlopr-jekyll.git"`
|
49
|
+
`$ cd devlopr-jekyll`
|
50
|
+
`$ code .`
|
54
51
|
|
55
|
-
|
52
|
+
Edit the below file configurations to make devlopr theme yours, you can customize everything from logo, name, posts.. anything.
|
56
53
|
|
57
|
-
|
54
|
+
Add Posts in <highlight>_posts</highlight> directory. <br />
|
55
|
+
Add Images in <highlight>assets/img</highlight> directory <br />
|
56
|
+
Add Categories in <highlight>categories</highlight> directory <br />
|
57
|
+
Edit Styles in <highlight>_sass</highlight> directory <br />
|
58
58
|
|
59
|
-
|
59
|
+
### _config.yml configuration ( Copy and Edit accordingly )
|
60
60
|
|
61
61
|
```
|
62
62
|
title: Your Site Title
|
@@ -89,7 +89,7 @@ dribbble_username: yourusername
|
|
89
89
|
flickr_username: yourusername
|
90
90
|
```
|
91
91
|
|
92
|
-
|
92
|
+
### Add blog section (if you want \blog)
|
93
93
|
|
94
94
|
Create a new file blog.md file with following front yaml inside it.
|
95
95
|
|
@@ -101,7 +101,7 @@ permalink: \blog\
|
|
101
101
|
---
|
102
102
|
```
|
103
103
|
|
104
|
-
|
104
|
+
### Post Yaml Format ( Example Below ) :
|
105
105
|
|
106
106
|
```
|
107
107
|
---
|
@@ -116,7 +116,7 @@ author: Sujay Kundu
|
|
116
116
|
---
|
117
117
|
```
|
118
118
|
|
119
|
-
|
119
|
+
### Adding Categories
|
120
120
|
|
121
121
|
For Adding Categories create new folder categories and inside that create a file `all.md` and copy the below code in that :
|
122
122
|
|
@@ -147,7 +147,7 @@ permalink: /blog/categories/
|
|
147
147
|
|
148
148
|
```
|
149
149
|
|
150
|
-
|
150
|
+
### Individual Categories
|
151
151
|
|
152
152
|
If you want to show all posts of a particular category, create a new file for that category inside categories folder
|
153
153
|
|
@@ -168,3 +168,9 @@ permalink: /blog/categories/angularjs
|
|
168
168
|
|
169
169
|
```
|
170
170
|
|
171
|
+
|
172
|
+
## License
|
173
|
+
|
174
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
175
|
+
|
176
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<!-- Wakatime -->
|
2
|
+
|
3
|
+
<figure>
|
4
|
+
<embed src="https://wakatime.com/share/@sujaykundu777/f540df00-f2d1-46e2-a360-da7e13ed8a66.svg"></embed>
|
5
|
+
</figure>
|
6
|
+
|
7
|
+
<figure>
|
8
|
+
<embed src="https://wakatime.com/share/@sujaykundu777/1550a9f1-d41a-4745-92a0-181a6fbb2456.svg"></embed>
|
9
|
+
</figure>
|
data/_includes/head.html
CHANGED
@@ -12,6 +12,8 @@
|
|
12
12
|
<!-- Stylesheets goes here -->
|
13
13
|
<link rel="stylesheet" href="/assets/css/main.css" />
|
14
14
|
|
15
|
+
<!-- Favicon -->
|
16
|
+
<link rel="icon" href="/assets/img/favicon.ico" type="image/gif" sizes="16x16">
|
15
17
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
16
18
|
crossorigin="anonymous"></script>
|
17
19
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
|
data/_includes/share.html
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
Share this on →
|
3
3
|
<a href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ site.url }}{{ page.url }}&via={{ site.twitter_username }}&related={{ site.twitter_username }}"
|
4
4
|
rel="nofollow" target="_blank" title="Share on Twitter">
|
5
|
-
<img alt="Share on Facebook" src="http://www.sujaykundu.com/assets/
|
5
|
+
<img alt="Share on Facebook" src="http://www.sujaykundu.com/assets/img/flat_web_icon_set/color/Twitter.png" />
|
6
6
|
</a>
|
7
7
|
<a href="https://facebook.com/sharer.php?u={{ site.url }}{{ page.url }}" rel="nofollow" target="_blank" title="Share on Facebook">
|
8
|
-
<img alt="Share on Facebook" src="http://www.sujaykundu.com/assets/
|
8
|
+
<img alt="Share on Facebook" src="http://www.sujaykundu.com/assets/img/flat_web_icon_set/color/Facebook.png" />
|
9
9
|
</a>
|
10
10
|
<a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" rel="nofollow" target="_blank" title="Share on Google+">
|
11
|
-
<img alt="Share on Google+" src="http://www.sujaykundu.com/assets/
|
11
|
+
<img alt="Share on Google+" src="http://www.sujaykundu.com/assets/img/flat_web_icon_set/color/Google+.png" />
|
12
12
|
</a>
|
13
13
|
</div>
|
data/_layouts/blog.html
CHANGED
@@ -1,51 +1,59 @@
|
|
1
1
|
---
|
2
|
-
layout: default
|
2
|
+
layout: default
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="row">
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
7
|
+
<div class="col-lg-8 col-md-4">
|
8
|
+
<ul>
|
9
|
+
<div class="row">
|
10
|
+
{% for post in site.posts %}
|
11
|
+
<div class="card blog-post">
|
12
|
+
<img class="card-img-top" src="/assets/img/{{ post.thumbnail }}" alt="{{ post.title }}">
|
13
|
+
<div class="card-body center">
|
14
|
+
<img src="/assets/img/{{ site.author_logo }}" class="author-profile-img">
|
15
|
+
<h4 class="card-title">{{ post.title }}</h4>
|
15
16
|
|
16
|
-
|
17
|
-
|
17
|
+
<h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
|
18
|
+
<p class="card-text">{{ post.summary }} </p>
|
18
19
|
|
19
|
-
|
20
|
-
|
20
|
+
<a href="{{ post.url | prepend: site.baseurl }}" data-disqus-identifier="{{ post.url }}" class="btn btn-primary btn-lg">Read</a>
|
21
|
+
<span class="disqus-comment-count" data-disqus-identifier="{{ post.url }}"></span>
|
21
22
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
{% endfor %}
|
26
|
-
</ul>
|
27
|
-
</div>
|
28
|
-
|
29
|
-
<div class="col-lg-4">
|
23
|
+
</div>
|
24
|
+
</div>
|
30
25
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
{% for tag in site.categories %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
36
|
-
<div id="#{{ tag_name | slugize }}"></div>
|
37
|
-
<li class="tag-head">
|
38
|
-
<a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
|
39
|
-
</li>
|
40
|
-
<a name="{{ tag_name | slugize }}"></a>
|
26
|
+
{% endfor %}
|
27
|
+
</div>
|
28
|
+
</ul>
|
29
|
+
</div>
|
41
30
|
|
42
|
-
|
31
|
+
<div class="col-lg-4">
|
32
|
+
<div class="card">
|
33
|
+
<div class="card-header"> About {{ site.author }} </div>
|
34
|
+
<div class="card-body text-dark">
|
35
|
+
<p> devlopr is a rubygem ( Jekyll Theme ) built for Developers. Anyone can create their website and host it freely
|
36
|
+
like this. All you need is to follow the simple steps in the DOCS !!</p>
|
37
|
+
</div>
|
43
38
|
</div>
|
39
|
+
<div class="card">
|
40
|
+
|
41
|
+
<div class="card-header">Categories </div>
|
42
|
+
<div class="card-body text-dark">
|
43
|
+
{% for tag in site.categories %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
44
|
+
<div id="#{{ tag_name | slugize }}"></div>
|
45
|
+
<li class="tag-head">
|
46
|
+
<a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
|
47
|
+
</li>
|
48
|
+
<a name="{{ tag_name | slugize }}"></a>
|
49
|
+
|
50
|
+
{% endfor %}
|
51
|
+
</div>
|
44
52
|
|
45
53
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
54
|
+
</div>
|
55
|
+
<div class="card">
|
56
|
+
<!-- Begin MailChimp Signup Form -->
|
57
|
+
{%- include newsletter.html -%}
|
58
|
+
</div>
|
59
|
+
</div>
|
data/_layouts/home.html
CHANGED
@@ -17,16 +17,31 @@ layout: default
|
|
17
17
|
<h1 class="card-title"> Work Experience</h1>
|
18
18
|
|
19
19
|
<br />
|
20
|
-
<
|
21
|
-
|
20
|
+
<div class="row">
|
21
|
+
<div class="col-md-2">
|
22
|
+
<img src="/assets/img/work/google.png" class="company-logo" />
|
23
|
+
</div>
|
24
|
+
<div class="col-md-6">
|
25
|
+
<h4 class="experience-title"> Full Stack Software Engineer</h4>
|
26
|
+
<h6 class="experience-info">Google ( Jan 2017 - Present )</h6>
|
27
|
+
<p class="experience-desc"> Worked on various technologies and built products which helps people globally </p>
|
22
28
|
|
23
|
-
|
24
|
-
|
25
|
-
<p class="experience-desc"> Worked on converting UI to Frontend Pages using HTML, CSS, JS</p>
|
29
|
+
</div>
|
30
|
+
</div>
|
26
31
|
|
27
32
|
<br />
|
28
|
-
<
|
29
|
-
|
33
|
+
<div class="row">
|
34
|
+
<div class="col-md-2">
|
35
|
+
<img src="/assets/img/work/microsoft.png" class="company-logo" />
|
36
|
+
</div>
|
37
|
+
<div class="col-md-6">
|
38
|
+
<h4 class="experience-title"> Front End Engineer</h4>
|
39
|
+
<h6 class="experience-info">Microsoft ( Mar 2015 - Dec 2016 )</h6>
|
40
|
+
<p class="experience-desc"> Worked on various technologies and built products which helps people globally </p>
|
41
|
+
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
|
30
45
|
|
31
46
|
</div>
|
32
47
|
|
@@ -80,7 +95,10 @@ layout: default
|
|
80
95
|
</div>
|
81
96
|
|
82
97
|
<div class="card">
|
83
|
-
<h1>
|
98
|
+
<h1> Coding Activity </h1>
|
99
|
+
|
100
|
+
{%- include activity.html -%}
|
101
|
+
|
84
102
|
</div>
|
85
103
|
|
86
104
|
</div>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -5,10 +5,10 @@ layout: default
|
|
5
5
|
<nav aria-label="breadcrumb" role="navigation">
|
6
6
|
<ol class="breadcrumb">
|
7
7
|
<li class="breadcrumb-item">
|
8
|
-
<a href="/
|
8
|
+
<a href="/">Blog</a>
|
9
9
|
</li>
|
10
10
|
<li class="breadcrumb-item">
|
11
|
-
<a href="/
|
11
|
+
<a href="/categories">Categories</a>
|
12
12
|
</li>
|
13
13
|
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
14
14
|
</ol>
|
data/_sass/devlog.scss
CHANGED
@@ -1,55 +1,65 @@
|
|
1
|
-
body{
|
2
|
-
background-color
|
1
|
+
body {
|
2
|
+
background-color: #D6DDE1 !important;
|
3
3
|
font-family: 'Montserrat', sans-serif !important;
|
4
4
|
}
|
5
|
-
|
5
|
+
|
6
|
+
header {
|
6
7
|
background-color: #F5F5F5;
|
7
8
|
height: 200px;
|
8
9
|
width: 100%;
|
9
10
|
padding: 30px;
|
10
11
|
}
|
11
|
-
|
12
|
+
|
13
|
+
.container-fluid {
|
12
14
|
margin: 0px !important;
|
13
15
|
padding: 0px !important;
|
14
16
|
}
|
15
17
|
|
16
|
-
.profile-img{
|
17
|
-
width:150px;
|
18
|
+
.profile-img {
|
19
|
+
width: 150px;
|
18
20
|
height: 150px;
|
19
21
|
margin-left: 20px;
|
20
22
|
}
|
21
|
-
|
23
|
+
|
24
|
+
.profile-name {
|
22
25
|
margin-top: 20px;
|
23
|
-
|
24
26
|
}
|
25
|
-
|
26
|
-
|
27
|
+
|
28
|
+
.profile-bio,
|
29
|
+
.profile-links {
|
30
|
+
margin-top: 5px;
|
27
31
|
}
|
28
32
|
|
29
|
-
.border{
|
33
|
+
.border {
|
30
34
|
border: 1px solid #000;
|
31
35
|
}
|
32
|
-
|
33
|
-
|
36
|
+
|
37
|
+
.center {
|
38
|
+
text-align: center;
|
34
39
|
}
|
35
|
-
|
40
|
+
|
41
|
+
.card {
|
36
42
|
margin: 20px !important;
|
37
43
|
padding: 20px !important;
|
38
44
|
}
|
39
|
-
|
45
|
+
|
46
|
+
.social-link {
|
40
47
|
color: #262222;
|
41
48
|
font-size: 15px;
|
42
49
|
padding: 5px;
|
43
|
-
margin:2px;
|
50
|
+
margin: 2px;
|
44
51
|
}
|
45
|
-
|
52
|
+
|
53
|
+
#navigation {
|
46
54
|
margin-top: 50px;
|
47
55
|
}
|
48
|
-
|
56
|
+
|
57
|
+
.nav-link {
|
49
58
|
font-size: 24px !important;
|
50
59
|
color: #000;
|
51
60
|
}
|
52
|
-
|
61
|
+
|
62
|
+
footer {
|
53
63
|
width: 100%;
|
54
64
|
height: 70px;
|
55
65
|
text-align: center;
|
@@ -57,30 +67,67 @@ footer{
|
|
57
67
|
background-color: #F5F5F5;
|
58
68
|
}
|
59
69
|
|
60
|
-
.
|
70
|
+
.company-logo {
|
71
|
+
width: 100px;
|
72
|
+
height: 100px;
|
73
|
+
}
|
74
|
+
|
75
|
+
.project-img {
|
61
76
|
width: 300px;
|
62
77
|
height: 200px;
|
63
78
|
}
|
64
|
-
|
79
|
+
|
80
|
+
.author-profile-img {
|
65
81
|
width: 50px;
|
66
82
|
height: 50px;
|
67
83
|
}
|
68
|
-
|
69
|
-
|
84
|
+
|
85
|
+
.project-desc {
|
86
|
+
float: left;
|
70
87
|
}
|
71
|
-
|
88
|
+
|
89
|
+
.project-link {
|
72
90
|
color: gray;
|
73
91
|
font-size: 15px;
|
74
92
|
}
|
75
|
-
|
93
|
+
|
94
|
+
.card-header {
|
76
95
|
border-radius: 0% !important;
|
77
96
|
}
|
78
|
-
@media (min-width: 320px) and (max-width: 780px){
|
79
97
|
|
80
|
-
|
98
|
+
.blog-post {
|
99
|
+
width: 350px;
|
100
|
+
height: auto;
|
101
|
+
margin: 20px !important;
|
102
|
+
}
|
103
|
+
|
104
|
+
.responsive-table {
|
105
|
+
display: block;
|
106
|
+
width: 100%;
|
107
|
+
overflow-x: auto;
|
108
|
+
}
|
109
|
+
|
110
|
+
pre,
|
111
|
+
code {
|
112
|
+
overflow: auto;
|
113
|
+
white-space: pre-wrap;
|
114
|
+
word-wrap: break-word;
|
115
|
+
word-break: break-all;
|
116
|
+
font-family: Courier, monospace;
|
117
|
+
font-size: 16px;
|
118
|
+
background-color: #F4F6F8;
|
119
|
+
padding: 5px;
|
120
|
+
display: block;
|
121
|
+
}
|
122
|
+
|
123
|
+
@media (min-width: 320px) and (max-width: 780px) {
|
124
|
+
header {
|
81
125
|
height: auto;
|
82
126
|
text-align: center;
|
83
127
|
}
|
84
|
-
|
85
|
-
|
128
|
+
.blog-post {
|
129
|
+
width: 300px;
|
130
|
+
height: auto;
|
131
|
+
margin-left: -20px !important;
|
132
|
+
}
|
86
133
|
}
|
data/assets/img/favicon.ico
CHANGED
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/assets/img/zoom.jpg
ADDED
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.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sujay Kundu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
|
+
- _includes/activity.html
|
64
65
|
- _includes/footer.html
|
65
66
|
- _includes/head.html
|
66
67
|
- _includes/header.html
|
@@ -74,14 +75,10 @@ files:
|
|
74
75
|
- _layouts/post.html
|
75
76
|
- _sass/devlog.scss
|
76
77
|
- assets/css/main.scss
|
77
|
-
- assets/img/android-chrome-192x192.png
|
78
|
-
- assets/img/android-chrome-512x512.png
|
79
|
-
- assets/img/apple-touch-icon.png
|
80
|
-
- assets/img/favicon-16x16.png
|
81
|
-
- assets/img/favicon-32x32.png
|
82
78
|
- assets/img/favicon.ico
|
83
|
-
- assets/img/gitflow-workflow.png
|
84
|
-
- assets/img/
|
79
|
+
- assets/img/posts/gitflow-workflow.png
|
80
|
+
- assets/img/posts/hello.jpg
|
81
|
+
- assets/img/posts/useful-tools.jpg
|
85
82
|
- assets/img/profile.png
|
86
83
|
- assets/img/projects/CBSHOYEUkAAxfSm.png_large
|
87
84
|
- assets/img/projects/Music.png
|
@@ -103,9 +100,12 @@ files:
|
|
103
100
|
- assets/img/projects/screenshotmy.png
|
104
101
|
- assets/img/projects/snap2.jpg
|
105
102
|
- assets/img/projects/snap3.jpg
|
106
|
-
-
|
107
|
-
-
|
108
|
-
|
103
|
+
- assets/img/styleguide.png
|
104
|
+
- assets/img/work/google.png
|
105
|
+
- assets/img/work/microsoft.png
|
106
|
+
- assets/img/work/skillenza.png
|
107
|
+
- assets/img/zoom.jpg
|
108
|
+
homepage: https://devlopr.netlify.com
|
109
109
|
licenses:
|
110
110
|
- MIT
|
111
111
|
metadata: {}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/blog.md
DELETED