Skip to content

Commit

Permalink
Merge pull request barryclark#18 from sujaykundu777/dev-april
Browse files Browse the repository at this point in the history
updated readme
  • Loading branch information
sujaykundu777 authored Apr 28, 2020
2 parents 7b72b0d + 722b0be commit 4be0be5
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 73 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
### devlopr-jekyll - A Jekyll Theme Built for Developers

Just a little something I'm using to jump start a site refresh. I like to think of it as a starter for building your own Jekyll site. I purposely keep the styling minimal and bare to make it easier to add your own flare and markup.
The Theme supports both Light and Dark Style. Highly Customizable and No Hosting or Maintainence Cost is required !

[Get Started](https://devlopr.netlify.com/get-started)

![devlopr jekyll](https://github.com/sujaykundu777/devlopr-jekyll/blob/master/assets/img/screenshot.PNG?raw=true)

devlopr uses Markdown Files to create data like Blog Posts, Gallery, Shop Products etc. No external database is required.

You can easily manage the site using the admin : [http://localhost:4000/admin](http://localhost:4000/admin)

![jekyll admin](https://github.com/sujaykundu777/devlopr-jekyll/blob/master/assets/img/jekyll-admin.PNG?raw=true)
Expand All @@ -14,14 +19,12 @@ You can easily manage the site using the admin : [http://localhost:4000/admin](h
[![Netlify Status](https://api.netlify.com/api/v1/badges/4232ac2b-63e0-4c78-92e0-e95aad5ab8c3/deploy-status)](https://app.netlify.com/sites/devlopr/deploys)
![](https://ruby-gem-downloads-badge.herokuapp.com/devlopr?type=total&color=brightgreen&style=plastic)

### Deploy your Blog using devlopr-jekyll - [Get Started](https://devlopr.netlify.com/get-started)
### Deploy your devlopr-jekyll blog - One Click Deploy

[![Deploy with ZEIT Now](https://zeit.co/button)](https://zeit.co/new/project?template=https://github.com/sujaykundu777/devlopr-jekyll)
[![Deploy with Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/sujaykundu777/devlopr-jekyll)
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/sujaykundu777/devlopr-jekyll)



### Demo (Hosted Apps)

- Github Pages Demo - [here](https://sujaykundu.com)
Expand All @@ -47,7 +50,6 @@ You can easily manage the site using the admin : [http://localhost:4000/admin](h

You can use this [deploy-jekyll-site](https://github.com/marketplace/actions/deploy-jekyll-site) action to build the site and use custom or non-supported jekyll plugins


## Using Docker :

Building the Image :
Expand Down
61 changes: 36 additions & 25 deletions _includes/blog_post_article.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,40 @@
<article class="card" itemscope itemtype="http://schema.org/BlogPosting">
<div class="card-header">
<!-- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> -->
<h4 class="post-meta">{{ page.summary }}</h4>
<p class="post-summary">Posted by : {% if page.author %}
<img src="{{site.url}}{{site.baseurl}}/assets/img/{{ site.author_logo }}" class="author-profile-img">
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ page.author }}</span>
</span>{% endif %} at
<time datetime="{{ page.date }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>
</p>
<span class="disqus-comment-count" data-disqus-identifier="{{ page.url }}"></span>
<div class="post-categories">
{% if post %} {% assign categories = post.categories %} {% else %} {% assign categories = page.categories %} {% endif %}
Category : {% for category in categories %}
<a href="{{site.baseurl}}/blog/categories/{{category|slugize}}">{{category}}</a>
{% unless forloop.last %}&nbsp;{% endunless %} {% endfor %}
</div>
<div class="card-header">
<!-- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> -->
<h4 class="post-meta">{{ page.summary }}</h4>
<p class="post-summary">
Posted by : {% if page.author %}
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ page.author }}</span> </span
>{% endif %} at
<time datetime="{{ page.date }}" itemprop="datePublished"
>{{ page.date | date: "%b %-d, %Y" }}</time
>
</p>
<span
class="disqus-comment-count"
data-disqus-identifier="{{ page.url }}"
></span>
<div class="post-categories">
{% if post %} {% assign categories = post.categories %} {% else %} {%
assign categories = page.categories %} {% endif %} Category : {% for
category in categories %}
<a href="{{site.baseurl}}/blog/categories/{{category|slugize}}"
>{{category}}</a
>
{% unless forloop.last %}&nbsp;{% endunless %} {% endfor %}
</div>
</div>

<div class="card-body" itemprop="articleBody">
<img class="card-img-top" src="{{site.url}}{{site.baseurl}}/assets/img/posts/{{ page.thumbnail }}" alt="{{ post.title }}">
<br/> <br/>
{{ content }}
</div>

<div id="disqus_thread"></div>

<div class="card-body" itemprop="articleBody">
<img
class="card-img-top"
src="{{site.url}}{{site.baseurl}}/assets/img/posts/{{ page.thumbnail }}"
alt="{{ post.title }}"
/>
<br />
<br />
{{ content }}
</div>
<div id="disqus_thread"></div>
</article>
72 changes: 28 additions & 44 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,56 +2,40 @@
layout: default
---

<!-- Blog Post Breadcrumbs -->
{%- include blog_post_breadcrumb.html -%}

<div class="row" id="blog-post-container">

<div class="col-lg-8 offset-md-2">

{%- include blog_post_article.html -%}

{%- include blog_post_comments.html -%}
</div>



</div> <!-- End of row-->

<div class="col-lg-8 offset-md-2">
{%- include blog_post_article.html -%}
{%- include blog_post_comments.html-%}
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="col-md-4">
<div class="card">
<div class="card-header"> About </div>
<div class="card-body">
<!-- Your Bio -->
<p class="author_bio"> {{ site.author_bio }}</p>

{%- include github_star_button.html -%}
</div>
<div class="card-header">About {{site.author}}</div>
<div class="card-body">
<p class="author_bio">{{ site.author_bio }}</p>
{%- include github_star_button.html -%}
</div>
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
<div class="card">
<div class="card-header">Categories </div>
<div class="card-body text-dark">
{%- include blog_categories.html -%}
</div>
<div class="card-header">Categories</div>
<div class="card-body text-dark">
{%- include blog_categories.html -%}
</div>
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
<div class="card">
<div class="card-header">Useful Links </div>
<div class="card-body text-dark">
{% for i in site.urls %}
<li >
<a href="{{ site.url}}{{site.baseurl}}{{ i.url }}">{{ i.text }}</a>
</li>
{% endfor %}
</div>
<div class="card-header">Useful Links</div>
<div class="card-body text-dark">
{% for i in site.urls %}
<li>
<a href="{{ site.url}}{{site.baseurl}}{{ i.url }}">{{ i.text }}</a>
</li>
{% endfor %}
</div>
</div>
</div>

</div>
</div>



0 comments on commit 4be0be5

Please sign in to comment.