Skip to content

Commit

Permalink
Added Projects Section and Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
season101 committed Sep 28, 2023
1 parent 81e6746 commit af62d74
Show file tree
Hide file tree
Showing 25 changed files with 125 additions and 146 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ gem "wdm", :platforms => [:mingw, :x64_mingw, :mswin]


gem "webrick"

gem "kramdown-syntax-coderay", "~> 1.0"
5 changes: 5 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ GEM
specs:
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
coderay (1.1.3)
colorator (1.1.0)
concurrent-ruby (1.2.2)
em-websocket (0.5.3)
Expand Down Expand Up @@ -49,6 +50,9 @@ GEM
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
kramdown-syntax-coderay (1.0.1)
coderay (~> 1.1)
kramdown (~> 2.0)
liquid (4.0.4)
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
Expand Down Expand Up @@ -85,6 +89,7 @@ DEPENDENCIES
jekyll-feed
jekyll-paginate
jekyll-seo-tag
kramdown-syntax-coderay (~> 1.0)
tzinfo
tzinfo-data
wdm
Expand Down
9 changes: 6 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@ paginate_path: "/blog/page:num/"
permalink: pretty

# disqus comments
disqus_comments: "yes" # yes - show disqus comments, no - hide disqus comments
disqus_comments: "no" # yes - show disqus comments, no - hide disqus comments
disqus_shortname: "glitche-jekyll-theme" # read more here https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-

# formsubmit.io
formspree_endpoint: "https://formspree.io/f/mnqkgkny" # sign up on https://formspree.io/ and create your form endpoint

formspree_endpoint: "https://formspree.io/f/mnqkgkny"
# collections
collections:
works:
Expand Down Expand Up @@ -96,3 +95,7 @@ sass:
style: compressed

markdown: kramdown

kramdown:
gfm_quirks: [paragraph_end]
syntax_highlighter: coderay
2 changes: 1 addition & 1 deletion _data/content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ hero:
image_alt: "Sijan Malla"
title: "<b>Sijan</b> Malla"
before_title: "Hello, <b>my name is</b>"
after_title: "I am <strong>Software Developer</strong>"
after_title: "I am a <strong>Software Developer</strong>"
description: "From Louisiana, US. I have rich experience in full-stack web development with a proven track record as a Team Leader. Skilled in Web, Cloud, AI/ML and DevOps Technologies. "
button1:
label: "Download Resume"
Expand Down
5 changes: 5 additions & 0 deletions _includes/section-blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<!-- Section - Blog -->
<section class="lui-section lui-gradient-top" id="blog-section">


</section>
85 changes: 85 additions & 0 deletions _includes/section-portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{% assign content = site.data.content['portfolio'] %}
{% assign ui_text = site.data.ui-text['ui_text'] %}
{% assign categories = site.data.settings['portfolio'] %}

<!-- Section - Works -->
<section class="lui-section lui-gradient-top" id="works-section">

<!-- Heading -->
<div class="lui-heading">
<div class="container">

<div class="m-titles align-center">
<h2 class="m-title splitting-text-anim-1 scroll-animate" data-splitting="words" data-animate="active">
<span>{{ content.title }}</span>
</h2>

</div>

</div>
</div>

<!-- Works -->
<div class="v-line v-line-right">
<div class="container">

<div class="works-box">
<div class="filter-links scrolla-element-anim-1 scroll-animate" data-animate="active">
<a href="#" class="lui-subtitle active" data-href=".works-col">{{ ui_text.all }}</a>
{% for category in categories.filters %}
<a href="#" class="lui-subtitle" data-href=".sorting-{{ category.slug }}">{{ category.name }}</a>
{% endfor %}
</div>

<div class="works-items works-masonry-items row">
{% for work in site.works %}
<div class="works-col col-xs-12 col-sm-12 col-md-12 col-lg-12 sorting-{{ work.category_slug }}">
<div class="works-item scrolla-element-anim-1 scroll-animate" data-animate="active">
<div class="image">
<div class="img">
<a href="{{ work.link }}">
<img decoding="async" src="{{ work.image | relative_url }}"
alt="{{ work.title }}" />
<span class="overlay"></span>
</a>
</div>
</div>
<div class="desc">
<span class="category">{{ work.category }}</span>
<h5 class="name">
{{ work.title }}
</h5>
<div class="works-github-links">
{% if work.github %}
<a target="_blank" rel="nofollow" href="{{ work.github }}" title="{{ work.github }}">
Repository: <i aria-hidden="true" class="fab fa-github"></i>
</a>
{% endif %}
</div>
<div class="text">
<p>{{ work.short_description }}</p>
</div>
<a href="{{ work.link }}" class="lnk">{{ ui_text.see_project }}</a>
</div>
<div class="bg-img" style="background-image: url(assets/images/pat-2.png);"></div>
</div>
</div>
{% endfor %}
</div>

<div class="load-more-link">
<a href="{{ content.button.link }}" class="btn scrolla-element-anim-1 scroll-animate"
data-animate="active">
<span>{{ content.button.label }}</span>
</a>
</div>
</div>

<div class="lui-bgtitle">
<span>{{ content.bg_title }}</span>
</div>

</div>
</div>

</section>
11 changes: 1 addition & 10 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,7 @@
<!-- Heading -->
<div class="m-titles align-center">
<div class="m-category scrolla-element-anim-1 scroll-animate" data-animate="active">
<a href="blog.html">Branding</a>, <a href="blog.html">UI Design</a>
{% assign cat_size = page.category | size %}
{% if cat_size != 0 %}
{% for category in page.category %}
<a
href="{{ '/categories' | relative_url }}/{{ category | downcase | url_escape | strip | replace: ' ', '-' }}">{{
category }}</a>{% if page.category.last != category and page.category.last != nil %},{% endif %}
{% endfor %}
{% endif %}
/ {{ page.date | date: site.date_format }} / {{ ui_text.by }} <span class="author">{{ author }}</span>
{{ page.date | date: site.date_format }} / {{ ui_text.by }} <span class="author">{{ author }}</span>
</div>
<h1 class="m-title scrolla-element-anim-1 scroll-animate" data-animate="active">
{{ page.title }}
Expand Down
35 changes: 0 additions & 35 deletions _posts/2016-02-24-welcome-to-jekyll.md

This file was deleted.

32 changes: 0 additions & 32 deletions _posts/2020-07-20-two-before-arrow.markdown

This file was deleted.

32 changes: 0 additions & 32 deletions _posts/2020-08-05-by-spite-about.md

This file was deleted.

16 changes: 16 additions & 0 deletions _sass/luique/basic.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3265,6 +3265,22 @@ hr {
.m-gallery .col-lg-6 {
padding: 20px;
}
.works-github-links a {
margin-top: 0;
margin-right: 15px;
margin-left: 0;
position: relative;
display: inline-block;
vertical-align: top;
font-size: 18px;
color: #000;
font-weight: 300;
text-decoration: none;
}

.works-github-links a:hover {
color: #29a587;
}


/**
Expand Down
37 changes: 4 additions & 33 deletions _works/explore.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,11 @@
---
# preview details
layout: works-single
title: Explore
title: Title
link: https://www.google.com
github: https://github.com/season101
category: Development
category_slug: development
category_slug: software-development
image: assets/img/works/work7.jpg
short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.

# full details
live_preview: https://bslthemes.com
full_image: assets/img/works/single1.jpg
info:
- label: Year
value: 2022

- label: Technology
value: Development, JS

description1:
show: yes
title: Project Goal
text: "<p>Aliquam a sapien diam. Phasellus pulvinar tellus aliquam eleifend consectetur. Sed bibendum leo quis rutrum aliquetmorbi.</p>
<p>Donec imperdiet risus at tortor consequat maximus et eget magna. Cras ornare sagittis augue, id sollicitudin justo tristique ut. Nullam ex enim, euismod vel bibendum ultrices, fringilla vel eros. Donec euismod leo lectus, et euismod metus euismod sed. Quisque quis suscipit ipsum, at pellentesque velit. Duis a congue sem.</p>"

gallery:
- assets/img/works/work5.jpeg
- assets/img/blog/blog8.jpg
- assets/img/blog/blog6.jpg

description2:
title: Project Result
text: "<p>Aliquam a sapien diam. Phasellus pulvinar tellus aliquam eleifend consectetur. Sed bibendum leo quis rutrum aliquetmorbi.</p>
<p>Donec imperdiet risus at tortor consequat maximus et eget magna. Cras ornare sagittis augue, id sollicitudin justo tristique ut. Nullam ex enim, euismod vel bibendum ultrices, fringilla vel eros. Donec euismod leo lectus, et euismod metus euismod sed. Quisque quis suscipit ipsum, at pellentesque velit. Duis a congue sem.</p>"

video:
poster: assets/img/blog/blog9.jpg
id: Gu6z6kIukgg

---
Binary file removed assets/img/avatar.png
Binary file not shown.
Binary file removed assets/img/blog/blog-2.jpg
Binary file not shown.
Binary file removed assets/img/blog/blog-4-scaled-1.jpg
Binary file not shown.
Binary file removed assets/img/blog/blog6.jpg
Binary file not shown.
Binary file removed assets/img/blog/blog8.jpg
Binary file not shown.
Binary file removed assets/img/blog/blog9.jpg
Binary file not shown.
Binary file removed assets/img/linkedin.jpeg
Binary file not shown.
Binary file removed assets/img/profile2.png
Binary file not shown.
Binary file removed assets/img/testimonials/testi4-1.jpg
Binary file not shown.
Binary file removed assets/img/testimonials/testi4-2.jpg
Binary file not shown.
Binary file removed assets/img/testimonials/testi4-3.jpg
Binary file not shown.
Binary file removed assets/img/testimonials/testi4-4.jpg
Binary file not shown.
Binary file removed assets/img/testimonials/testi4-5.jpg
Binary file not shown.

0 comments on commit af62d74

Please sign in to comment.