Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ jobs:
if: github.event.action != 'closed'
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
ruby-version: "3.3.0"
bundler-cache: true

env:
BUNDLE_CLEAN: true
- name: Get Pages url
if: github.event.action != 'closed'
id: pages
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ jobs:
- name: Install Ruby packages
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
ruby-version: "3.3.0"
bundler-cache: true

env:
BUNDLE_CLEAN: true
- name: Get Pages url
id: pages
uses: actions/configure-pages@v2
Expand Down
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ source "https://rubygems.org"
# jekyll
gem "jekyll", "~> 4.3"
gem "webrick", "~> 1.7"
gem "csv", "~> 3.3"
gem "base64", "~> 0.3.0"
gem "bigdecimal", "~> 3.3"

# plugins
group :jekyll_plugins do
Expand All @@ -13,10 +16,7 @@ group :jekyll_plugins do

end

gem "csv", "~> 3.3"

gem "base64", "~> 0.3.0"

gem "bigdecimal", "~> 3.3"
gem 'jekyll-data-pages'

gem 'jekyll-data-pages'
gem "csv", "~> 3.3"
20 changes: 12 additions & 8 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,18 @@
{% endfor %}
</div>

<div>
&copy; {{ site.time | date: "%Y" }}
{{ site.title }}
&nbsp; | &nbsp; Develop by
<a href="{{ '/members/vo-huu-anh-tuan/' | relative_url }}">
Vo Huu Anh Tuan
</a>
</div>
<div>
&copy; {{ site.time | date: "%Y" }}
{{ site.title }}
&nbsp; | &nbsp; Create by
<a href="https://github.com/anhtong">Anh Tong</a>

&nbsp; | &nbsp; Develop by
<a href="{{ '/members/vo-huu-anh-tuan/' | relative_url }}">
Vo Huu Anh Tuan
</a>
</div>


<input
type="checkbox"
Expand Down
1 change: 1 addition & 0 deletions _plugins/generate_member_pages.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

module Jekyll
class GenerateMemberPages
def initialize(site)
Expand Down