Skip to content

Commit

Permalink
updated projects not showing in about
Browse files Browse the repository at this point in the history
  • Loading branch information
Eswar563 committed Aug 3, 2022
1 parent 6759b24 commit 872ca0d
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 14 deletions.
23 changes: 12 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ GEM
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
faraday (2.3.0)
faraday (2.4.0)
faraday-net_http (~> 2.0)
ruby2_keywords (>= 0.0.4)
faraday-net_http (2.0.3)
faraday-retry (1.0.3)
faraday-net_http (2.1.0)
faraday-retry (2.0.0)
faraday (~> 2.0)
ffi (1.15.5)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.10.0)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
jekyll (4.2.2)
addressable (~> 2.4)
Expand Down Expand Up @@ -66,7 +67,7 @@ GEM
mercenary (0.4.0)
multi_json (1.15.0)
nio4r (2.5.8)
octokit (4.24.0)
octokit (4.25.1)
faraday (>= 1, < 3)
sawyer (~> 0.9)
pathutil (0.16.2)
Expand All @@ -81,13 +82,13 @@ GEM
rack (~> 1.5)
rack-protection (1.5.5)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rack-test (2.0.2)
rack (>= 1.3)
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.29.0)
rouge (3.30.0)
ruby2_keywords (0.0.5)
safe_yaml (1.0.5)
sassc (2.4.0)
Expand All @@ -108,9 +109,9 @@ GEM
tilt (>= 1.3, < 3)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
tilt (2.0.10)
tilt (2.0.11)
trollop (2.9.9)
tzinfo (2.0.4)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2022.1)
tzinfo (>= 1.0.0)
Expand Down Expand Up @@ -144,4 +145,4 @@ DEPENDENCIES
webrick (~> 1.7)

BUNDLED WITH
2.3.15
2.3.19
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,24 @@ or if you want to try fast :
$ git clone https://github.com/your_github_username/your_github_username.github.io.git
$ cd your_github_username
```
### For Linux : (Ubuntu 20.04)

To work locally with ubuntu, follow this commands.

Install Ruby :
```s
$ sudo apt install ruby-full`
$ ruby --version
ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux-gnu]
$ gem install jekyll bundler
$ bundle update
$ bundle install
$ bundle exec jekyll -v
jekyll 4.2.2
$ bundle exec jekyll serve --livereload
```

### For Windows :

Expand All @@ -59,7 +77,7 @@ $ bundler -v
Bundler version 2.3.15
$ bundle update
$ bundle install
$ bundle exec jekyll -v
jekyll 4.2.2
Expand All @@ -71,6 +89,7 @@ If you are using permission issues, running bundler:
```s
$ sudo rm -rf _site
$ bundle update
$ bundle install
$ bundle exec jekyll serve
```
Start the server locally at http://127.0.0.1:4000/ or http://localhost:4000/
Expand Down
4 changes: 2 additions & 2 deletions _layouts/about-me.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h1 class="card-title">About</h1>
<div id="author_projects" class="card">
<h1 class="card-title">Projects</h1>
<br />
<!-- {% for project in site.author_project_details %} {% if project.visibility
{% for project in site.author_project_details %} {% if project.visibility
== true %}
<div class="row" id="project-card">
<div class="col-md-6">
Expand All @@ -139,7 +139,7 @@ <h6 class="experience-info">{{ project.project_info}}</h6>
</div>
<br />
{% endif %} {% endfor %}
</div> -->
</div>
{% endif %} {% if site.show_author_work_experiences == true %}
<div class="card">
<h1 class="card-title">Work Experience</h1>
Expand Down

0 comments on commit 872ca0d

Please sign in to comment.