forked from sujaykundu777/devlopr-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
profile picture can be changed from _config file
- Loading branch information
1 parent
fe29591
commit 95b0e11
Showing
4 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ description: >- # this means to ignore newlines until "baseurl:" | |
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "" # the base hostname & protocol for your site, e.g. http://example.com | ||
|
||
author_logo: site-logo.png | ||
author_logo: profile.png | ||
disqus_shortname: shortname | ||
author: Your Name | ||
author_bio: Hi I am a full stack web developer and freelancer based in India. I enjoy experimenting with new technologies and love anything related to hacking. I tend to follow startup scenes and also enjoy gaming. | ||
author_bio: Something About You for about me | ||
author_email: "[email protected]" | ||
author_location: Your Location | ||
author_website_url: "https://yourwebsite.com" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--- layout: default --- | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="row"> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,18 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "devlopr" | ||
spec.version = "0.1.6" | ||
spec.version = "0.1.7" | ||
spec.authors = ["Sujay Kundu"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = %q{ A Theme built for developers } | ||
spec.homepage = "https://www.sujaykundu.com" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) } | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select do |f| | ||
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i) | ||
end | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.8" | ||
|
||
spec.add_development_dependency "bundler", "~> 1.16" | ||
|