Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build errors during deployment to GitHub Pages #209

Closed
eftekhar-hossain opened this issue Mar 1, 2021 · 23 comments
Closed

Build errors during deployment to GitHub Pages #209

eftekhar-hossain opened this issue Mar 1, 2021 · 23 comments
Labels

Comments

@eftekhar-hossain
Copy link

eftekhar-hossain commented Mar 1, 2021

**I am failed to deploy the ai-folio theme in my personal repository. Even I don't find any fruitful reason why it is happening.

Need Help**

Capture

@brucewlee
Copy link

same here

@alshedivat
Copy link
Owner

alshedivat commented Mar 3, 2021

The website will not be correctly deployed until you make some changes, commit, and push. Please make sure to follow the deployment instructions provided in the README. See my comment below on how to deploy correctly.

@syncdoth
Copy link

syncdoth commented Mar 9, 2021

Same here. What I did for my personal repo was:

  1. fork the repo
  2. rename the repo to <my user name>.github.io
  3. change the name of the branch master to source
  4. enable github actions
  5. clone the repo to local
  6. make some changes & push to source branch

Then, I get the same error as @eftekhar-hossain:

GitHub Pages failed to build your site.

The tag twitter on line 7 in _posts/2020-09-28-twitter.md is not a recognized Liquid tag.

Any ideas?

@raghavmittal101
Copy link

Got rid of this error by deleting the post mentioned in the error message. It's probably because of some mistyping.

@syncdoth
Copy link

syncdoth commented Mar 10, 2021

@raghavmittal101 That did not help in my case.. :(

I deleted the _posts/2020-09-28-twitter.md file and re-committed and pushed, but similar error occurs on different file.

Screen Shot 2021-03-10 at 3 59 49 PM

I presume the bibliography is the tag used for automatically fetching bibliography, so deleting this file also would not be a good idea..

@alshedivat alshedivat added bug and removed question labels Mar 10, 2021
@FloorVerhoeven
Copy link

Same here as @syncdoth

@alshedivat
Copy link
Owner

Looks like github made some updates recently, so there are a couple more steps you need to follow to setup a personal page:

  1. As usual, fork the repository.

  2. Click on Actions and enable Github Actions:

Screen Shot 2021-03-14 at 1 52 49 AM

  1. Go to Settings and rename your fork to <your-username>.github.io.

  2. In the settings, select Branches and rename the master branch to source:

Screen Shot 2021-03-14 at 1 55 18 AM

  1. Finally, again in the settings, in the Github Pages section, set the source branch to master (NOT to source).

  2. Make any changes to your webpage (in the source branch), commit, and push.

Point 5 is important and is the source of error. If GitHub Pages Source is set to source branch, it will attempt to automatically build and deploy your webpage. This results in the error because GitHub Pages does not support some of the jekyll plugins (bibliography, twitter, etc.). Instead, we use a custom github action for deploying the website (that's why you have to enable github actions on your fork in point 2), which correctly builds the website and pushes the built version to master. GitHub Pages simply picks up the built version of the website from the master branch.

@alshedivat alshedivat changed the title I have been facing issue during the deployment. reported an liquid error Build errors during deployment to GitHub Pages Mar 14, 2021
@AndrewILWilliams
Copy link

AndrewILWilliams commented Mar 14, 2021

@alshedivat thanks for this! Perhaps I'm being silly, but if we're renamed the master branch to source, I don't think we can then set the source branch to master in the Github Pages settings?

image

EDIT: Ignore this! You have to wait until Github Actions has run and generated a new master branch..

@alshedivat alshedivat pinned this issue Mar 30, 2021
@lzfelix
Copy link

lzfelix commented Apr 4, 2021

Is it okay if I make a PR adding these new instructions to the README.md?

@alshedivat
Copy link
Owner

@lzfelix, I wasn't sure how to update README without over-cluttering it. It'd be great if you could find a nice way!

@RajGhugare19
Copy link

@AndrewWilliams3142 How long does that take?

alshedivat added a commit that referenced this issue May 2, 2021
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: #209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
@alshedivat
Copy link
Owner

alshedivat commented May 2, 2021

#261 adds the latest instructions to README. Closing this issue.

UPDATE: deployment of personal and organization pages has been simplified, see issue #342 and PR #344.

github-actions bot added a commit that referenced this issue May 2, 2021
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: #209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]> [ci skip]
@alshedivat alshedivat unpinned this issue May 30, 2021
LoryPack pushed a commit to LoryPack/lorypack.github.io that referenced this issue Jun 3, 2021
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
ngmarchant pushed a commit to ngmarchant/ngmarchant.github.io that referenced this issue Jun 10, 2021
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat/al-folio#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
lqxyz pushed a commit to lqxyz/lqxyz.github.io that referenced this issue Jul 11, 2021
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat/al-folio#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
@danbischof
Copy link

danbischof commented Oct 5, 2021

This solution does not work for me. Followed all steps but cannot do 5. "Master" never appears here -- also not after waiting.

Thus, I still receive this error:
Screenshot 2021-10-05 at 11 04 45

@arielsho
Copy link

Sorry, the updated instruction doesn't work for me. The "master" branch didn't show up automatically. Could you please help? Thanks! @alshedivat

Looks like github made some updates recently, so there are a couple more steps you need to follow to setup a personal page:

  1. As usual, fork the repository.
  2. Click on Actions and enable Github Actions:
Screen Shot 2021-03-14 at 1 52 49 AM
  1. Go to Settings and rename your fork to <your-username>.github.io.
  2. In the settings, select Branches and rename the master branch to source:
Screen Shot 2021-03-14 at 1 55 18 AM
  1. Finally, again in the settings, in the Github Pages section, set the source branch to master (NOT to source).
  2. Make any changes to your webpage (in the source branch), commit, and push.

Point 5 is important and is the source of error. If GitHub Pages Source is set to source branch, it will attempt to automatically build and deploy your webpage. This results in the error because GitHub Pages does not support some of the jekyll plugins (bibliography, twitter, etc.). Instead, we use a custom github action for deploying the website (that's why you have to enable github actions on your fork in point 2), which correctly builds the website and pushes the built version to master. GitHub Pages simply picks up the built version of the website from the master branch.

@vss245
Copy link

vss245 commented Nov 4, 2021

hey @arielsho, I had the same issue and I edited the 'deploy' file to say 'main' instead of 'master' because my first branch in the repo was named main (without renaming any other branches etc) - it seems to work so far.

Sorry, the updated instruction doesn't work for me. The "master" branch didn't show up automatically. Could you please help? Thanks! @alshedivat

@charleslipku
Copy link

@alshedivat thanks for this! Perhaps I'm being silly, but if we're renamed the master branch to source, I don't think we can then set the source branch to master in the Github Pages settings?

image

EDIT: Ignore this! You have to wait until Github Actions has run and generated a new master branch..

@alshedivat thanks for this! Perhaps I'm being silly, but if we're renamed the master branch to source, I don't think we can then set the source branch to master in the Github Pages settings?

image

EDIT: Ignore this! You have to wait until Github Actions has run and generated a new master branch..

I cannot see the new 'master' branch, do you know what is the reason?

kushalarora added a commit to kushalarora/kushalarora.github.io that referenced this issue May 30, 2022
commit f7274c0
Author: Rohan Deb Sarkar <[email protected]>
Date:   Mon May 16 07:12:41 2022 +0530

    Minor fixes for previous PR #668 (#672)

commit 8db7daf
Author: Rohan Deb Sarkar <[email protected]>
Date:   Fri May 13 00:37:04 2022 +0530

    Add support for `nav_order` and Fix hardcoded navbar titles (#664)

commit 503bfc2
Author: Rohan Deb Sarkar <[email protected]>
Date:   Fri May 13 00:16:01 2022 +0530

    Add `jekyll-minifier` (#668)

    * Remove obsolete plugins

    * Add `jekyll-minifier`

    * Add `JEKYLL_ENV=production`

commit e40bc98
Author: Rohan Deb Sarkar <[email protected]>
Date:   Thu May 12 23:10:21 2022 +0530

    Delete `travis.yml` (#665)

commit 49c339a
Author: Carolina Carreira <[email protected]>
Date:   Thu May 12 18:39:20 2022 +0100

    Add a new star (#667)

    Add a start to list of academic personal webpages

commit c4e170a
Author: Tønnes Nygaard <[email protected]>
Date:   Sun May 1 17:38:39 2022 +0200

    Added bibtex filter to hide custom bibtex keywords from bib file output (#652)

commit e5c1012
Author: Tønnes Nygaard <[email protected]>
Date:   Sun May 1 17:38:28 2022 +0200

    Added documentation on publication buttons (#651)

    * Added documentation on publication buttons

    * Added missing </details>

commit 42abefc
Author: Maruan <[email protected]>
Date:   Sun Apr 24 10:09:21 2022 -0400

    Add support for external blog posts (#647)

    * Add support for external blog posts

    * Cosmetic fixes

commit f7dd7f6
Author: Maruan <[email protected]>
Date:   Sun Apr 3 09:55:12 2022 -0700

    Call bash on bin/deploy in github actions (#625)

commit a6174a6
Author: Maruan <[email protected]>
Date:   Sun Apr 3 06:05:19 2022 -0700

    Fix table colors in dark mode (#624)

commit a2f7f05
Author: Guillaume Dalle <[email protected]>
Date:   Sun Apr 3 00:23:00 2022 +0200

    Empty entrytype if not article or inproceedings (#578)

    For bibtex entries that are neither articles nor proceedings, the value `entrytype` carries over from the previous entry in the loop, leading to incorrect displays. This PR fixes that.

commit d05ef48
Author: Tirtharaj Dash <[email protected]>
Date:   Mon Mar 28 05:53:29 2022 +0530

    Added a star (#617)

commit ce26339
Author: Amala Wilson <[email protected]>
Date:   Sat Mar 12 01:28:48 2022 -0500

    Added amalawilson.com to the list of user samples (#595)

commit 55ca811
Author: Kun Wu <[email protected]>
Date:   Tue Mar 1 23:19:13 2022 -0600

    mention K-Wu personal website in readme (#575)

commit 53eef90
Author: Maruan Al-Shedivat <[email protected]>
Date:   Sun Feb 20 08:28:52 2022 -0800

    Fix #565

commit 07a2e05
Author: Amir Pourmand <[email protected]>
Date:   Sun Feb 20 08:19:47 2022 +0330

    Add custom favicon if needed (#386)

commit c37abc4
Author: Jiashu Xu <[email protected]>
Date:   Sat Feb 19 19:41:13 2022 -0800

    enable blog to redirect to asset (#550)

commit 77b60dc
Author: Viraj Thakkar <[email protected]>
Date:   Sun Feb 20 07:16:45 2022 +0530

    Theme and responsiveness fixes (#509)

    * Dark themed cards

    * Responsiveness fixes

    * added dark stylesheet option

    * highlight theme toggle

    * added highlight function

    * added highlight themes to assets/css

    * offline highlight implementation

    * Fixes for masonry

    * Revert "added highlight themes to assets/css"

    This reverts commit ee7cb7675671430697f3a38bd5a56405179e6dd9.

    * Update `code syntax highlighting` to use jsdelivr CDN

    * Project card responsiveness fixes

    * added personal website to readme

    veedata.github.io

    * Reverted responsiveness chnages

    * Minor adjustments

    Co-authored-by: rohandebsarkar <[email protected]>
    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit a50364c
Author: Maruan <[email protected]>
Date:   Sun Feb 13 20:07:29 2022 -0800

    Fix a small bug in news (#560)

commit d071346
Author: yyang768osu <[email protected]>
Date:   Sun Feb 13 19:53:22 2022 -0800

    Add Yang's webpage (#559)

commit 13e6ceb
Author: Amir Pourmand <[email protected]>
Date:   Mon Feb 14 07:22:51 2022 +0330

    Layout Spacing problem when footer_fixed: false (#554)

    * fix space

    * Minor adjustments

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 16a1a77
Author: Vanshaj Kerni <[email protected]>
Date:   Mon Jan 31 05:11:16 2022 +0530

    Change -webkit-transition to transition-property (#540)

    As per https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-transition, webkit-transition feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes.

commit d4886b0
Author: Rohan Deb Sarkar <[email protected]>
Date:   Mon Jan 31 05:03:29 2022 +0530

    Update README.md and LICENSE year (#544)

commit 4b55a40
Author: Jack Lloyd-Walters <[email protected]>
Date:   Sun Jan 30 23:32:28 2022 +0000

    Add my own site to the readme (#545)

commit c3ac2b4
Author: Scott Lee Chua <[email protected]>
Date:   Fri Jan 21 12:26:10 2022 +0800

    Add my personal website to Readme examples (#535)

commit f936811
Author: Ali Kuwajerwala <[email protected]>
Date:   Thu Jan 20 12:05:25 2022 -0500

    fixed title for og preview, otherwise its "blank" (#531)

    * fixed title for og preview, otherwise its "blank"

    * Update _includes/metadata.html

    Co-authored-by: Maruan <[email protected]>

commit 3a7c57b
Author: Amir Pourmand <[email protected]>
Date:   Thu Jan 20 20:31:37 2022 +0330

    Add website to README.md (#533)

commit 44079da
Author: Ali Kuwajerwala <[email protected]>
Date:   Mon Jan 17 19:46:18 2022 -0500

    added my website to readme examples (#530)

commit 0c2e657
Author: Rohan Deb Sarkar <[email protected]>
Date:   Fri Jan 14 04:20:50 2022 +0530

    Update library versions (bootstap, jquery, fontawesome, academicicons, masonry, mdbootstrap) (#521)

commit 0b801ac
Author: Jun-Liang Lin <[email protected]>
Date:   Thu Jan 13 17:48:22 2022 -0500

    Fix distill collapsible Navbar (#524)

commit dcce13b
Author: Rohan Deb Sarkar <[email protected]>
Date:   Fri Jan 14 04:18:12 2022 +0530

    Minor fixes (#522)

commit b715177
Author: Maruan <[email protected]>
Date:   Mon Jan 3 08:50:53 2022 -0500

    Correctly slugify distill TOC (#519)

    * Correctly slugify distill TOC

    * Add special character to demo distill post's TOC

commit 17329fc
Author: Maruan <[email protected]>
Date:   Fri Dec 31 19:47:19 2021 +0300

    Fix distill dark mode again (#517)

commit b950fc3
Author: José M. Requena Plens <[email protected]>
Date:   Fri Dec 31 17:46:42 2021 +0100

    Better SEO, OpenGraph, schema.org and clean generated code (#481)

commit 7f53255
Author: Julian Lehrer <[email protected]>
Date:   Thu Dec 23 04:36:48 2021 -0800

    Update 2015-10-20-math.md (#514)

    Typo

commit 4d28129
Author: Amir Pourmand <[email protected]>
Date:   Wed Dec 22 11:57:28 2021 +0330

    Delete assets/resized directory from GIT (#440)

commit 0e3cff9
Author: Rohan Deb Sarkar <[email protected]>
Date:   Wed Dec 22 13:43:52 2021 +0530

    Use WebP responsive images (#498)

    This PR replaces the jekyll-responsive-images with jekyll-imagemagick for responsive WebP images.

    WebP images are much smaller compared to PNG and JPEG, faster to load and most of the modern browsers recommend it.

    More information about WebP images: https://developers.google.com/speed/webp

commit 1e4e147
Author: Maruan Al-Shedivat <[email protected]>
Date:   Thu Nov 25 21:48:52 2021 -0500

    Switch to uing <picture> for responsive images

commit d574787
Author: Nipuna Weerasekara <[email protected]>
Date:   Fri Nov 26 07:11:27 2021 +0530

    Add a website to list of academics websites (#473)

commit 8de1ad4
Author: Maruan Al-Shedivat <[email protected]>
Date:   Thu Nov 25 20:36:47 2021 -0500

    Fix a small bug in _includes/responsive_img.html

    Correctly fixes the issue mentioned in #471.

commit a0cfbbd
Author: Maruan <[email protected]>
Date:   Sun Nov 21 17:18:23 2021 -0500

    Add TOC to distill blog posts (#470)

commit 7f10dc3
Author: Rohan Deb Sarkar <[email protected]>
Date:   Mon Nov 22 01:35:46 2021 +0530

    Lighthouse enhancements (#445)

commit b45b247
Author: Xiaochen Zhu <[email protected]>
Date:   Mon Nov 22 02:48:43 2021 +0800

    Fix broken read_time in blog/index.html (#469)

commit 5612275
Author: Maruan <[email protected]>
Date:   Sun Nov 21 11:55:39 2021 -0500

    Revert "remove extra space in profile image path (#451)" (#468)

    This reverts commit 0a8bfb4.

commit 0a8bfb4
Author: Karim de Fombelle <[email protected]>
Date:   Thu Nov 11 01:58:16 2021 +0800

    remove extra space in profile image path (#451)

commit e95f421
Author: Maruan <[email protected]>
Date:   Tue Nov 9 09:44:26 2021 -0500

    Update README.md

commit 47aea31
Author: Maruan <[email protected]>
Date:   Sat Oct 30 19:58:02 2021 -0400

    Update README.md

commit d500e08
Author: Maruan Al-Shedivat <[email protected]>
Date:   Sat Oct 30 19:53:39 2021 -0400

    Remove theming dependence on jquery

commit 032ff48
Author: Maruan Al-Shedivat <[email protected]>
Date:   Sat Oct 30 17:05:36 2021 -0400

    Add best practices info to README

commit fe3339d
Author: Edsuns <[email protected]>
Date:   Sun Oct 31 04:59:04 2021 +0800

    Optimize dark theme (#431)

    * Optimize dark theme

    * Fix-up

    * Minor fixes

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 1c52125
Author: Dinesh Natesan <[email protected]>
Date:   Sun Oct 31 02:28:42 2021 +0530

    Added Jekyll-Archives (for tags, categories) and Jekyll site-map (#346)

    * Add webpage to academic pages list

    * adding panelbear analytics

    * added categories for projects and horizontal mode display for projects

    * rewrote the code to ensure it works properly with current project definitions

    * Style adjustments

    * added blockquote format, jekyll-archives, tag, year archive pages, and reading time.

    * added archive meta to blog posts list and individual posts.

    * added sitemap

    * stylistic modifications to jekyll-archive addition

    * Minor fixes

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 174024e
Author: Maruan <[email protected]>
Date:   Sat Oct 30 16:26:55 2021 -0400

    Add support for responsive images (#439)

commit 9c36be1
Author: Amir Pourmand <[email protected]>
Date:   Sat Oct 30 23:56:37 2021 +0330

    Optimize Website Load Time (#435)

    * Place js files after body tag

    * Add Analytics to the end of script

    * Minor nits and fixes

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 6968945
Author: José M. Requena Plens <[email protected]>
Date:   Sat Oct 30 03:31:46 2021 +0200

    Update deploy.yml (#436)

    ‘action’ is deprecated, change to ‘ruby’
    https://github.com/ruby/setup-ruby

commit ae9ecf2
Author: Amir Pourmand <[email protected]>
Date:   Fri Oct 22 19:15:37 2021 +0330

    Adding month to publication section (#433)

commit ed1a9ee
Author: Steven Rick <[email protected]>
Date:   Thu Oct 21 17:02:37 2021 -0700

    adds color transition support to li elements (#434)

commit 1b64518
Author: Maruan <[email protected]>
Date:   Wed Oct 13 09:40:39 2021 -0400

    Update README.md

commit 533bed5
Author: Rohan Deb Sarkar <[email protected]>
Date:   Sat Oct 9 06:21:38 2021 +0530

    Add RSS icon to social.html (#418)

    * Add rss icon

    * Add a blank line to make sure rss icon is always at the last

commit 1d974fa
Author: Maruan <[email protected]>
Date:   Thu Oct 7 11:46:18 2021 -0400

    Update README.md

commit eea0e5f
Author: Maruan <[email protected]>
Date:   Tue Oct 5 10:05:21 2021 -0400

    Update README.md

commit 52fcd07
Author: Maruan <[email protected]>
Date:   Sun Oct 3 21:44:24 2021 -0400

    Update README.md

commit cd4b382
Author: Maruan <[email protected]>
Date:   Sun Oct 3 18:26:29 2021 -0700

    Add jekyll-diagrams (#333)

    * Add mermaid support via jekyll-diagrams

    * Add mermaid install to deploy workflow

commit 6b0bf87
Author: Amir Pourmand <[email protected]>
Date:   Mon Oct 4 04:46:05 2021 +0330

    add jekyll target blank plugin (#404)

    * add jekyll target blank

    * Remove manual target blank from everywhere

    * Update README.md

    * Set ruby version to 3.0.2 in the deploy script

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 3ca8883
Author: Rohan Deb Sarkar <[email protected]>
Date:   Mon Oct 4 05:36:46 2021 +0530

    Add 404.html (#412)

commit ce15b08
Author: Amir Pourmand <[email protected]>
Date:   Sat Sep 25 22:23:53 2021 +0330

    add stackoverflow id (#400)

commit 895063a
Author: Maik Wöhl <[email protected]>
Date:   Wed Sep 8 06:48:20 2021 +0200

    Add 'main' branch for newer GitHub repositories (#389)

commit 0885f49
Author: Sebastian Daza <[email protected]>
Date:   Wed Sep 8 06:25:26 2021 +0200

    add website (#383)

commit b323767
Author: Maruan <[email protected]>
Date:   Fri Aug 27 08:59:34 2021 -0400

    Revert jekyll-scholar bibtex filters (#381)

    * Revert "Fix latex rendering issue in the bibliography entries (#358)"

    This reverts commit e328dc6.

    * Update mathjax version to 3.2.0

    * Add bibtex_filters explicitly to _config.yml

commit 04f526d
Author: Julian Streyczek <[email protected]>
Date:   Tue Aug 17 13:49:53 2021 +0200

    minor updates to CONTRIBUTING and LICENSE, add website (#365)

commit 5a65595
Author: Maruan <[email protected]>
Date:   Mon Aug 16 13:16:26 2021 -0400

    Revert "Change gitcdn link (#234)" (#364)

    This reverts commit 0e4df83.

commit f4c01ac
Author: Riddhiman Adib <[email protected]>
Date:   Sat Aug 7 15:51:48 2021 -0500

    adds submenu in navigation bar. (fixes issue #159) (#334)

    * adds submenu in navigation bar. (fixes issue #159)

    * Updated scss files to change hover animations on dropdown submenus, on both dark mode and light mode

commit e328dc6
Author: Maruan <[email protected]>
Date:   Sat Jul 31 16:05:30 2021 -0400

    Fix latex rendering issue in the bibliography entries (#358)

commit 664220e
Author: Maruan <[email protected]>
Date:   Sat Jul 31 12:35:05 2021 -0400

    Update bug_report.md

commit 5694d43
Author: Maruan <[email protected]>
Date:   Sun Jul 25 11:30:58 2021 -0400

    Update _config.yml

commit 60fc64b
Author: Rohan Deb Sarkar <[email protected]>
Date:   Wed Jul 21 18:41:03 2021 +0530

    Adds support for sitemap and robots.txt (#337)

    * Adds support for sitemap

    * Adds support for robots.txt

commit 8fe464d
Author: Neeraj Gangwar <[email protected]>
Date:   Sun Jul 18 20:57:16 2021 +0530

    Correct the documentation for personal/organization and manual deployments (#351)

commit 4d5f2dc
Author: Neeraj Gangwar <[email protected]>
Date:   Sat Jul 17 22:25:43 2021 +0530

    Use master for source code for personal/organization webpages and update the document (#344)

    Co-authored-by: Neeraj Gangwar <[email protected]>

commit 89efedc
Author: Christoph Junghans <[email protected]>
Date:   Tue Jul 6 10:43:13 2021 -0600

    _config.yml: add dblp_url (#336)

commit 63f278a
Author: Maruan Al-Shedivat <[email protected]>
Date:   Mon Jul 5 11:28:30 2021 -0700

    Minor stylistic fixes.

commit 9c8bd1a
Author: Maruan <[email protected]>
Date:   Mon Jul 5 14:18:41 2021 -0400

    Correctly update medium-zoom background when switching theme (#332)

commit 495c4aa
Author: Dag7 <[email protected]>
Date:   Mon Jul 5 19:27:59 2021 +0200

    Initial Atom (RSS-like) feed support (#284)

    * initial Atom (RSS-like) feed support

    * Update _config.yml

commit a5508c7
Author: Ivan Puhachov <[email protected]>
Date:   Sun Jul 4 20:27:39 2021 -0400

    Fix distill darkmode (#299)

    * updating distill post to show fixes done

    * fix for colors in numerated lists and tables

    * fixing blockquotes

    * fixing colors in math, footnotes, references, hover boxes, code highlights

    * Add example distill overrides

    * reverted back changes in distill template.v2.js

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 585a188
Author: Maruan <[email protected]>
Date:   Sun Jul 4 20:22:43 2021 -0400

    Fix the blog page title (#331)

commit 4465402
Author: nphair <[email protected]>
Date:   Fri Jun 11 11:35:25 2021 -0400

    Fixes #304. Fix bad horizontal template include (#305)

commit 1318c80
Author: Maruan <[email protected]>
Date:   Sun May 30 19:38:24 2021 -0400

    Adds support for image zoom (#296)

    * Add image zoom

    * Minor improvements

commit 016a01b
Author: Maruan <[email protected]>
Date:   Sun May 30 18:46:56 2021 -0400

    Fix project page colors (#295)

commit f3efec5
Author: Afonso Raposo <[email protected]>
Date:   Sun May 30 21:28:31 2021 +0100

    Added BibTeX hidden block (#293)

    * Added BibTeX hidden block

    * Minor adjustments

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 3051f8a
Author: Patrick Totzke <[email protected]>
Date:   Mon May 17 02:43:02 2021 +0100

    add dblp to social links (#270)

commit 50b6196
Author: Dag7 <[email protected]>
Date:   Mon May 17 03:28:06 2021 +0200

    Fix for images (#271)

    When you fork this directory in your local fork, if you remove images from assets, the README file will be broken.
    This should fix the README problem, ensuring that images are always up-to-date from the assets folder of the original al-folio folder.

commit 305102c
Author: Dag7 <[email protected]>
Date:   Sun May 2 17:11:57 2021 +0200

    Added proper instructions in personal webpages (#261)

    * Added proper instructions in personal webpages

    Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat/al-folio#209 (comment)

    * Update README.md

    * Update README.md

    Co-authored-by: Maruan <[email protected]>

commit 42bda10
Author: Daniel Sokolowski <[email protected]>
Date:   Sun May 2 17:07:08 2021 +0200

    Added the Programming Group at HSG to labs (#254)

commit e27fe2a
Author: Dinesh Natesan <[email protected]>
Date:   Mon Apr 12 00:04:15 2021 +0530

    Categories for projects and an optional horizontal project card style (#224)

    * Add webpage to academic pages list

    * adding panelbear analytics

    * added categories for projects and horizontal mode display for projects

    * rewrote the code to ensure it works properly with current project definitions

    * Style adjustments

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 0e4df83
Author: jkmacc-LANL <[email protected]>
Date:   Fri Apr 2 20:19:30 2021 -0600

    Change gitcdn link (#234)

    gitcdn.link was quite slow.  Use alternate link at gitcdn.xyz.

commit 4849b5a
Author: JD <[email protected]>
Date:   Mon Mar 29 08:49:42 2021 -0700

    Issue 183 (#192)

    * Issue 183

    * CSS fixes for :
      * Citations
      * Footer
      * Project Cards
      * Code background

    * Fix dark mode edge cases (mainly with distill)

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 11691db
Author: Maruan <[email protected]>
Date:   Sun Mar 28 18:51:49 2021 -0400

    Update Gemfile (#230)

commit f5d41dd
Author: Sean Quinn <[email protected]>
Date:   Sun Mar 28 15:44:26 2021 -0700

    Add gitlab to social (#229)

    * Add gitlab to social

    * Add gitlab to social integration

commit 199b693
Author: Maruan <[email protected]>
Date:   Sun Mar 14 13:04:01 2021 -0400

    Update stale.yml

commit 09f6b3a
Author: Maruan <[email protected]>
Date:   Sun Mar 14 12:54:04 2021 -0400

    Create stale.yml

commit f2156d1
Author: Maruan <[email protected]>
Date:   Thu Mar 11 16:30:31 2021 -0500

    Switch favicon to emoji (#217)

commit 83daa02
Author: Yiru Chen <[email protected]>
Date:   Thu Mar 11 13:04:04 2021 -0500

    Update README.md (#216)

commit e65c12b
Author: Maruan <[email protected]>
Date:   Thu Mar 4 15:21:47 2021 -0500

    Update README.md

commit 11ce2d2
Author: Maruan <[email protected]>
Date:   Thu Mar 4 10:19:08 2021 -0500

    Update README.md

commit 218291b
Author: Roger Iyengar <[email protected]>
Date:   Thu Mar 4 09:54:38 2021 -0500

    Fix titles and headings (#204)

    * Update head.html

    * Update header.html

    * Update head.html

    * Update header.html

    * Update about.html

    Co-authored-by: Maruan <[email protected]>

commit 9229f7d
Author: Roger Iyengar <[email protected]>
Date:   Mon Feb 22 08:35:01 2021 -0500

    Add favicon (#205)

    * Add favicon

    * Add files via upload

commit d3082bd
Author: George Oikonomou <[email protected]>
Date:   Tue Feb 9 17:06:43 2021 +0000

    Improve support for deploying in out-of-tree locations (#81)

    * Improve support for deploying in out-of-tree locations

    * Document how to deploy in an out-of-tree location

    * Add vendor to excludes in _config.yml

    * Update README.md

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit 5c6697b
Author: Thiago <[email protected]>
Date:   Mon Feb 8 16:09:09 2021 +0100

    fix distill pubiblication date (#194)

commit edf1425
Author: Roger Iyengar <[email protected]>
Date:   Mon Feb 1 15:53:17 2021 -0500

    Add a link to CMU Distributed Systems course page (#193)

commit c437bf5
Author: Maruan <[email protected]>
Date:   Fri Jan 15 00:29:22 2021 -0500

    Set ruby version to 2.7 in the deploy workflow

commit 8680c4b
Author: Christoph Junghans <[email protected]>
Date:   Thu Jan 14 22:27:58 2021 -0700

    add support for impressum page (#172)

    * add support for impressum page

    * Update _config.yml

    Co-authored-by: Maruan <[email protected]>

    Co-authored-by: Maruan <[email protected]>

commit c2c0577
Author: Christoph Junghans <[email protected]>
Date:   Thu Jan 14 12:49:01 2021 -0700

    social: add wikidata page (#185)

commit 40921e4
Author: JD <[email protected]>
Date:   Thu Jan 14 11:45:47 2021 -0800

    Issue 180 - Distill Bugfix (#182)

    * dark_mode.js was not being loaded on distill blog pages.
    * Moved dark_mode.js and jquery.html to head.html to simplify/standardize dark mode/theming for other pages.

commit 6b28f90
Author: Zirui Zhuang <[email protected]>
Date:   Tue Jan 12 12:54:27 2021 +0800

    add coauthor annotation (#175)

    * add coauthor annotation

    * fix typo in coauthors.yml

    * add brief author annotation tutorial in README.md

    * change to combined data structure

    Coauthors are grouped by their last names. Within each group, using flat format (array of {firstnames, url}).

    * Update _layouts/bib.html

    stylistic changes

    Co-authored-by: Maruan <[email protected]>

    * Update _layouts/bib.html

    stylistic changes

    Co-authored-by: Maruan <[email protected]>

    * Update _layouts/bib.html

    stylistic changes

    Co-authored-by: Maruan <[email protected]>

    * Update _layouts/bib.html

    stylistic changes

    Co-authored-by: Maruan <[email protected]>

    Co-authored-by: Maruan <[email protected]>

commit dc254f7
Author: JD <[email protected]>
Date:   Fri Jan 8 16:48:26 2021 -0800

    Issue 173 fix (#178)

    * Changed color of icon from static to using variable.

commit 3cdd0f6
Author: Dinesh Natesan <[email protected]>
Date:   Thu Jan 7 20:17:38 2021 +0530

    Add webpage + add panelbear analytics (#176)

    * Add webpage to academic pages list

    * adding panelbear analytics

commit e2353bc
Author: Lorenzo Pacchiardi <[email protected]>
Date:   Tue Jan 5 16:04:18 2021 +0100

    Check for local untracked files when deploying (#168)

    * Check for local untracked files when deploying

    * Compress test for untracked files to 1 line

    Co-authored-by: Maruan <[email protected]>

    * Add vendor to .gitignore

    * Add .bundle to .gitignore

    Co-authored-by: Maruan Al-Shedivat <[email protected]>

commit c4be6f8
Author: Christoph Junghans <[email protected]>
Date:   Tue Jan 5 07:37:57 2021 -0700

    social: add work url (#171)

    * social: add work url

    * Deploy: --dry-run -> --no-push

commit 625fb69
Author: Christoph Junghans <[email protected]>
Date:   Mon Jan 4 18:09:20 2021 -0700

    Github action: add deploy workflow (#163)

    * Github action: add deploy workflow

    * Update .github/workflows/deploy.yml

    Co-authored-by: Maruan <[email protected]>

commit 0369fe3
Author: Zhuoran Qiao <[email protected]>
Date:   Sat Jan 2 13:07:08 2021 -0800

    Update the list of academic pages (#165)

commit 4f9cdb1
Author: Maruan <[email protected]>
Date:   Sun Dec 27 00:24:25 2020 -0500

    Minor fixes of the dark mode + automatic equation numbering (#160)

    * Add an option for showing selected publications

    * Improve publication styles

    * Update README.md

    * Clearfix

    * Fix minor issues with dark mode

    * Add automatic equation numbering (#158)

    * Fix a typo

commit b36304a
Author: Huyen Nguyen <[email protected]>
Date:   Sun Dec 27 09:57:17 2020 +0700

    Update text color in navbar in dark mode (#154)

commit b73662b
Author: Zirui Zhuang <[email protected]>
Date:   Sun Dec 27 10:56:42 2020 +0800

    add wide screen configuration (#157)

    add wide screen configuration by adding a `max_width` config in `_config.yml`

commit 7886538
Author: Zirui Zhuang <[email protected]>
Date:   Sun Dec 27 10:52:15 2020 +0800

    Support more accurate author annotation (#156)

    added a list `scholar: first_name` in `_config.yml`
    updated `_layouts/bib.html` template
    supports more accurate author annotation by both matching the last name and one form of first name in the `_config.yml/scholar: first_name`

commit 420e228
Author: Huyen Nguyen <[email protected]>
Date:   Thu Dec 17 05:35:17 2020 +0700

    Update README, change theme-color in _themes.scss (#153)

    $theme-color value should be updated from _sass/_themes.scss instead of _sass/variables.scss
@ghost
Copy link

ghost commented Oct 12, 2022

@alshedivat yeah I dont have a new master branch

henrykenlay added a commit to gspworkshop/gspworkshop.github.io that referenced this issue Nov 14, 2022
Triggering github actions in accordance to alshedivat/al-folio#209 (comment)
github-actions bot added a commit to gspworkshop/gspworkshop.github.io that referenced this issue Nov 14, 2022
Triggering github actions in accordance to alshedivat/al-folio#209 (comment) [ci skip]
@LiquidAmmonia
Copy link

Until now, the bug still remains...

@chwag
Copy link

chwag commented Jan 26, 2023

Until now, the bug still remains...

Had the same problem, and found issue #342, where it was proposed to set the default branch back to master (delete any other master branch you may have created in between) and set gh-pages as source branch for Pages. Worked for me! :)

pecey pushed a commit to pecey/pecey.github.io that referenced this issue Jan 27, 2023
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
@bicmfcs
Copy link

bicmfcs commented Apr 2, 2023

I keep getting build and deployment error while trying to publish my gh pages, it workes locally, does anyone could help me ?
Repository that I'm using.
I'm using jekyll al-folio for my webpage.
let me know if you need any more information.

Danial-Alh added a commit to Danial-Alh/homepage-alfolio that referenced this issue Apr 30, 2023
* fix distill pubiblication date (#194)

* Improve support for deploying in out-of-tree locations (#81)

* Improve support for deploying in out-of-tree locations

* Document how to deploy in an out-of-tree location

* Add vendor to excludes in _config.yml

* Update README.md

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Add favicon (#205)

* Add favicon

* Add files via upload

* Fix titles and headings (#204)

* Update head.html

* Update header.html

* Update head.html

* Update header.html

* Update about.html

Co-authored-by: Maruan <[email protected]>

* Update README.md

* Update README.md

* Update README.md (#216)

* Switch favicon to emoji (#217)

* Create stale.yml

* Update stale.yml

* Add gitlab to social (#229)

* Add gitlab to social

* Add gitlab to social integration

* Update Gemfile (#230)

* Issue 183 (#192)

* Issue 183

* CSS fixes for : 
  * Citations
  * Footer
  * Project Cards
  * Code background

* Fix dark mode edge cases (mainly with distill)

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Change gitcdn link (#234)

gitcdn.link was quite slow.  Use alternate link at gitcdn.xyz.

* Categories for projects and an optional horizontal project card style (#224)

* Add webpage to academic pages list

* adding panelbear analytics

* added categories for projects and horizontal mode display for projects

* rewrote the code to ensure it works properly with current project definitions

* Style adjustments

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Added the Programming Group at HSG to labs (#254)

* Added proper instructions in personal webpages (#261)

* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat/al-folio#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>

* Fix for images (#271)

When you fork this directory in your local fork, if you remove images from assets, the README file will be broken.
This should fix the README problem, ensuring that images are always up-to-date from the assets folder of the original al-folio folder.

* add dblp to social links (#270)

* Added BibTeX hidden block (#293)

* Added BibTeX hidden block

* Minor adjustments

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Fix project page colors (#295)

* Adds support for image zoom (#296)

* Add image zoom

* Minor improvements

* Fixes #304. Fix bad horizontal template include (#305)

* Fix the blog page title (#331)

* Fix distill darkmode (#299)

* updating distill post to show fixes done

* fix for colors in numerated lists and tables

* fixing blockquotes

* fixing colors in math, footnotes, references, hover boxes, code highlights

* Add example distill overrides

* reverted back changes in distill template.v2.js

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Initial Atom (RSS-like) feed support (#284)

* initial Atom (RSS-like) feed support

* Update _config.yml

* Correctly update medium-zoom background when switching theme (#332)

* Minor stylistic fixes.

* _config.yml: add dblp_url (#336)

* Use master for source code for personal/organization webpages and update the document (#344)

Co-authored-by: Neeraj Gangwar <[email protected]>

* Correct the documentation for personal/organization and manual deployments (#351)

* Adds support for sitemap and robots.txt (#337)

* Adds support for sitemap

* Adds support for robots.txt

* Update _config.yml

* Update bug_report.md

* Fix latex rendering issue in the bibliography entries (#358)

* adds submenu in navigation bar. (fixes issue #159) (#334)

* adds submenu in navigation bar. (fixes issue #159)

* Updated scss files to change hover animations on dropdown submenus, on both dark mode and light mode

* Revert "Change gitcdn link (#234)" (#364)

This reverts commit 0e4df83.

* minor updates to CONTRIBUTING and LICENSE, add website (#365)

* Revert jekyll-scholar bibtex filters (#381)

* Revert "Fix latex rendering issue in the bibliography entries (#358)"

This reverts commit e328dc6.

* Update mathjax version to 3.2.0

* Add bibtex_filters explicitly to _config.yml

* add website (#383)

* Add 'main' branch for newer GitHub repositories (#389)

* add stackoverflow id (#400)

* Add 404.html (#412)

* add jekyll target blank plugin (#404)

* add jekyll target blank

* Remove manual target blank from everywhere

* Update README.md

* Set ruby version to 3.0.2 in the deploy script

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Add jekyll-diagrams (#333)

* Add mermaid support via jekyll-diagrams

* Add mermaid install to deploy workflow

* Update README.md

* Update README.md

* Update README.md

* Add RSS icon to social.html (#418)

* Add rss icon

* Add a blank line to make sure rss icon is always at the last

* Update README.md

* adds color transition support to li elements (#434)

* Adding month to publication section (#433)

* Update deploy.yml (#436)

‘action’ is deprecated, change to ‘ruby’
https://github.com/ruby/setup-ruby

* Optimize Website Load Time (#435)

* Place js files after body tag

* Add Analytics to the end of script

* Minor nits and fixes

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Add support for responsive images (#439)

* Added Jekyll-Archives (for tags, categories) and Jekyll site-map (#346)

* Add webpage to academic pages list

* adding panelbear analytics

* added categories for projects and horizontal mode display for projects

* rewrote the code to ensure it works properly with current project definitions

* Style adjustments

* added blockquote format, jekyll-archives, tag, year archive pages, and reading time.

* added archive meta to blog posts list and individual posts.

* added sitemap

* stylistic modifications to jekyll-archive addition

* Minor fixes

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Optimize dark theme (#431)

* Optimize dark theme

* Fix-up

* Minor fixes

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Add best practices info to README

* Remove theming dependence on jquery

* Update README.md

* Update README.md

* remove extra space in profile image path (#451)

* Revert "remove extra space in profile image path (#451)" (#468)

This reverts commit 0a8bfb4.

* Fix broken read_time in blog/index.html (#469)

* Lighthouse enhancements (#445)

* Add TOC to distill blog posts (#470)

* Fix a small bug in _includes/responsive_img.html

Correctly fixes the issue mentioned in #471.

* Add a website to list of academics websites (#473)

* Switch to uing <picture> for responsive images

* Use WebP responsive images (#498)

This PR replaces the jekyll-responsive-images with jekyll-imagemagick for responsive WebP images.

WebP images are much smaller compared to PNG and JPEG, faster to load and most of the modern browsers recommend it.

More information about WebP images: https://developers.google.com/speed/webp

* Delete assets/resized directory from GIT (#440)

* Update 2015-10-20-math.md (#514)

Typo

* Better SEO, OpenGraph, schema.org and clean generated code (#481)

* Fix distill dark mode again (#517)

* Correctly slugify distill TOC (#519)

* Correctly slugify distill TOC

* Add special character to demo distill post's TOC

* Minor fixes (#522)

* Fix distill collapsible Navbar (#524)

* Update library versions (bootstap, jquery, fontawesome, academicicons, masonry, mdbootstrap) (#521)

* added my website to readme examples (#530)

* Add website to README.md (#533)

* fixed title for og preview, otherwise its "blank" (#531)

* fixed title for og preview, otherwise its "blank"

* Update _includes/metadata.html

Co-authored-by: Maruan <[email protected]>

* Add my personal website to Readme examples (#535)

* Add my own site to the readme (#545)

* Update README.md and LICENSE year (#544)

* Change -webkit-transition to transition-property (#540)

As per https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-transition, webkit-transition feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes.

* Layout Spacing problem when footer_fixed: false (#554)

* fix space

* Minor adjustments

Co-authored-by: Maruan Al-Shedivat <[email protected]>

* Add Yang's webpage (#559)

* Fix a small bug in news (#560)

* Theme and responsiveness fixes (#509)

* Dark themed cards

* Responsiveness fixes

* added dark stylesheet option

* highlight theme toggle

* added highlight function

* added highlight themes to assets/css

* offline highlight implementation

* Fixes for masonry

* Revert "added highlight themes to assets/css"

This reverts commit ee7cb7675671430697f3a38bd5a56405179e6dd9.

* Update `code syntax highlighting` to use jsdelivr CDN

* Project card responsiveness fixes

* added personal website to readme

veedata.github.io

* Reverted responsiveness chnages

* Minor adjustments

Co-authored-by: rohandebsarkar <[email protected]>
Co-authored-by: Maruan Al-Shedivat <[email protected]>

* enable blog to redirect to asset (#550)

* Add custom favicon if needed (#386)

* Fix #565

* mention K-Wu personal website in readme (#575)

* Added amalawilson.com to the list of user samples (#595)

* Added a star (#617)

* Empty entrytype if not article or inproceedings (#578)

For bibtex entries that are neither articles nor proceedings, the value `entrytype` carries over from the previous entry in the loop, leading to incorrect displays. This PR fixes that.

* Fix table colors in dark mode (#624)

* Call bash on bin/deploy in github actions (#625)

* Add support for external blog posts (#647)

* Add support for external blog posts

* Cosmetic fixes

* Added documentation on publication buttons (#651)

* Added documentation on publication buttons

* Added missing </details>

* Added bibtex filter to hide custom bibtex keywords from bib file output (#652)

* Add a new star (#667)

Add a start to list of academic personal webpages

* Delete `travis.yml` (#665)

* Add `jekyll-minifier` (#668)

* Remove obsolete plugins

* Add `jekyll-minifier`

* Add `JEKYLL_ENV=production`

* Add support for `nav_order` and Fix hardcoded navbar titles (#664)

* Minor fixes for previous PR #668 (#672)

* Fix theme (#697)

* fix theme

* fix theme

Co-authored-by: rohandebsarkar <[email protected]>

* Add support for CV (#628)

* Minor changes and fixes (#726)

* Support for cicular image (#728)

* Adds vertical scrollbar to news (#729)

* Update Lighthouse PageSpeed Insights

* Adds support for bypassing GitHub Pages Jekyll processing (#738)

* Adds support for preview images for publications (#730)

* Adds support for publication teaser

* Adds an example for publication teaser

* Update example publication teaser

* Update size

* change `teaser` to `preview`

* Update _config.yml

Co-authored-by: Maruan <[email protected]>

* Update _layouts/bib.html

Co-authored-by: Maruan <[email protected]>

* Update _layouts/bib.html

Co-authored-by: Maruan <[email protected]>

* Update _layouts/bib.html

Co-authored-by: Maruan <[email protected]>

* Update _sass/_base.scss

Co-authored-by: Maruan <[email protected]>

* Update _sass/_base.scss

Co-authored-by: Maruan <[email protected]>

Co-authored-by: Maruan <[email protected]>

* Adds support for tag-list (#734)

* Adds support for tag-list

* Update _sass/_base.scss

Co-authored-by: Maruan <[email protected]>

* Made tags optional

* Responsive deign for tag-list

Co-authored-by: Maruan <[email protected]>

* Fix typos in _layouts/about.html (#739)

* add star (#744)

* Change imagemagick optional to depend on one variable (#745)

* Fix Previous PR (#745) (#746)

* Fix responsive image (#748)

* fix

* base url

* Revert "base url"

This reverts commit 2e81d32ec22f8a9ec53b7ad216679d4cfa88456c.

* fix

* Better bundler caching for GitHub Actions (#750)

* Better caching for GitHub Actions

* Update `actions/checkout` to `v3`

* docs: add alshedivat as a contributor for design, code (#751)

* docs: update README.md [skip ci]

* docs: create .all-contributorsrc [skip ci]

* Update .all-contributorsrc

* Update README.md

* Update .all-contributorsrc

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Maruan Al-Shedivat <[email protected]>

* docs: add rohandebsarkar as a contributor for code (#752)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Add Dockerfile for easy installation on local machine  (#532)

* docs: add pourmand1376 as a contributor for code (#753)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Update README.md

* Update README.md

* Update README.md

* Adds support `max_author_limit` (#732)

* Adds support max author limit

* typo

* fix

* display all authors by default

* Added an example

* Added 'and' before the last author

* Improve hiding/showing more authors

* Add title text

Co-authored-by: Maruan Al-Shedivat <[email protected]>
Co-authored-by: Maruan <[email protected]>

* Fix scripts (#755)

* Include bootstrap bundle (#756)

* Bootstrap js SRI fix (#757)

* fix more authors bug (#758)

* fix more authors bug

* fix

* add preview

Co-authored-by: Rohan Deb Sarkar <[email protected]>

* Optimize image qualities and a fix (#762)

* blog tag-list

* optimize publication preview

* better compression

* optimize jpg project images

* reduce sizes of project images

* fix

* Skip Docker Image on Forked Images (#767)

* Add Tags for Docker Images (#754)

* Adds support for repositories (#760)

* Add support for github repo cards

* add support for dark theme

* Add support for custom theme

* repositories

* fix

* make it simpler

* spcaing

* responsive fix

* adds support for usernames

* make it modular

* fix

* show icons

* cache_seconds

* fix

* Revert "cache_seconds"

This reverts commit a9dd4d5d43d212676e1c1dba8ec8086c7fdb7cd7.

* add last line

* fix

* github only

* fix

* Add instructions

* Add `README.md` instructions

* Add `nav_order`

* Adds support for GA4 Google Analytics (#727)

* Update `analytics.html`

* Update `config.yml`

* Update

* Update

* Added my webpage to the list (#788)

Added my webpage to the list.

* Fix title spaces and a few links (#789)

* fix title

* fix a few links

* add line

* Add website (#802)

* Fix commas in author list (#770)

* Support different colors for different kinds of publications in publication list (#797)

* Add personal page (#812)

* Update README.md

* add page (#817)

* fix #814 (#818)

* fixe typos (#823)

* Fix grammar (#848)

* Update 2018-12-22-distill.md

* Update README.md

* Display booktitle for publications of type incollection (#871)

* Adding Table of Contents to Readme file (#876)

* Add dominikstrb's personal page (#880)

Added a link to my personal website to the README

* Add Semantic Scholar social integration (#879)

* add more social media (#878)

#877 is an explanation of the issue. The new icons include Kaggle,
LastFM, Spotify, Pinterest, Unsplash, Instagram, and Facebook, and you
can change their order.

* add multiple last names in bibliography (#905)

Multiple last names can be defined to be highlighted in the bibliography
(#904)

* fix bug where proceedings do not render (#913)

* Improve info about theme colors (#911)

* Add docker badges (#888)

* Update README.md

* Set the margin according to the alignment selected (#928)

As reported in #927, the style of the profile class only considers a
left-margin regardless of the alignment option selected.
Thus, when the user changes the default alignment there is no
corresponding margin to match their selection.
My commit addresses this by enabling the corresponding margin for the
left or right alignment options

* Fix default highlighting (#931)

The default setting `media="none"` disables code highlighting. This
works OK when we have `enable_darkmode: true` in `config.yml` as the
code handling the dark/light theme switching takes care of setting
`media=""` for the preferred theme.
However, setting `enable_darkmode: false` prevents importing `theme.js`
which in turn prevents said change thus the default highlighting stays
disabled.
Setting `media=""` by default enables the default highlighting when
`enable_darkmode` is false.

Fixes #929

* Fixed missing year in title when in blog archive (#921)

Fixed missing year in title when visualizing blog archive filtered by
year

Signed-off-by: George Araujo <[email protected]>

* Slugify tag and category links (#947)

Fixes links to jekyll-archive pages when tag/category contains spaces.

* Update README.md (#953)

added the link to the personal academic site I've started working on
using al-folio in the table

* Fixed broken link to distill-style blog post (#957)

Updated README.md with the correct link to the distill-style blog post
example.

* Add a progress bar to show the scroll position (#934)

This feature adds a horizontal bar under the top menu which tracks the
vertical scroll position. Such a feature can be useful to represent how
much is left to read on the current page more aesthetically.

As this is an optional feature, `enable_progressbar` must be set to
`true` in `_config.yml` to activate the functionality.

I am not the original author of this code. I just made it compatible
with the current version of the template at the time of this commit. The
original code was most likely authored by Pankaj Parashar in this
[post](https://css-tricks.com/reading-position-indicator/) made a few
years before the first inclusion in an `al-folio` site. Then, the code
was adapted for compatibility with the template at Anthony Plantanios'
site. Finally, I did
the last updates to have the code fit the new conventions used in the
project.

This was discussed in #557

Co-authored-by: rohandebsarkar <[email protected]>

* Enable progress bar by default

* Add WhatsApp to social integration (#945)

* Add altmetric badges to paper (#950)

[Altmetric](https://www.altmetric.com/) tracks social media and citation
activity for a paper. I added an option to add the altmeric id to a
paper's bib entry, which results in the altmeric badge for the paper
being displayed next to the other buttons. As an example, I added the
altmetric id for the Einstein, Podolsky & Rosen paper.

* Small stylistic fix

* Update README.md

* Add Docker-compose file for windows compatibility  (#875)

This file makes it easier for windows users to use docker. (Closes #829)

Previous to this commit, those who used Windows had to install Ubuntu
inside windows (via WSL) and run our commands. Now they can run it by
just typing `docker-compose up`.

> The main problem was that `./bin/dockerhub_run.sh` command was written
with `Bash` in mind and you had to change it a little bit to make it
compatible with windows `Powershell`. We shouldn't have two scripts.
This is why adding a `docker-compose.yml` file is necessary.

* Added Mastodon to social (#974)

* Add Junshen's personal page (#979)

Added a link to my personal website to the README.

* Add support for Disqus comments on distill posts (#981)

Fixes #980.

* Add backlink to verify mastodon (#978)

* New update to GH Actions: Deprecating `save-state` and `set-output` commands (#986)

Hi there

First of all, thanks for this amazing complete theme

Due to this warning which has been recently showed by Github,
`::set-output` will be deprecated and must be replaced with a new method


![image](https://user-images.githubusercontent.com/86428901/201933020-4a53d735-08b4-41d3-b38c-e16942fdd64e.png)

topic: [GitHub Actions: Deprecating save-state and set-output
commands](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/)

Thanks

* Add Andreas Kuster's published webpage (#991)

Thanks a lot for this very neat and professional template. This PR adds
my academic page to the Academics list

* Adds Telegram to social integrations (#992)

* fix deploy script for `--user` (#994)

Fixes #820.

Explanation:
alshedivat/al-folio#969 (comment)

* add ellisbrown.github.io reference (#1008)

* Update README.md (#1014)

Adding my webpage.

* ADD More Clear Explanations in README (#1012)

* Add Container Name (#1021)

* Adapt repo code to handle branches too (#1003)

* Add support for giscus comments (#1028)

adds support for comments on posts using https://giscus.app/

* Add interactive plotly example to distill post (#1027)

* Hide the other opened box (Bib, Abs), if any (#1002)

* Add Pre-commit Hook (#801)

* Improve bib layout for thesis (#920)

* add star to readme (#1064)

* Add youtube as a social option (#1007)

* Fix medium zoom on small devices (#1084)

fixes #1006

* Fix SRI hash (#1087)

Sorry, forgot to change the SRI.

* Fix Docker Problem (#1074)

* Adds Dimensions badge (#1086)

This adds a dimension badge as requested in #987.

This separates the the links from the badges, in case more badges need to be added in the future.

* Add news page (#1085)

fixes #993 

Also added links to news and publications from respective section
headers on the home page. Changed the colors of the header links to make
it consistent with the previous look.

* Added my star to README (#1093)

Added my webpage link (⭐) to the table of `al-folio` users.

* Update favicon emoji length limit (#1099)

Since, a image file will always contain a dot and a three letter
extension at least (ex: `.jpg`, `.png`, `.jpeg`, etc). Therefore we can
safely set the limit up to 4.

fixes #1096

* fix distill hyperlink color (#1113)

Make distill hyperlink color logic consistent with rest of the theme.

fixes #1105

* fix: small typo (#1143)

fix a small typo

* Use figure for bib entry preview (#1152)

This makes sure that the image is resized per media type by imagemagick.
The result is still a bit too big (1400 width on desktop), but better
than nothing.

Signed-off-by: Zuhair AlSader <[email protected]>

* Add CogSci workshop to list of workshops in README (#1170)

created a new row in the 'Workshops' section to add a workshop at Cogsci
2022 where we used this awesome template!
Thanks!

* Add star to academic portfolios (#1178)

Adding my portfolio website to the list.

* Added george-gca academic site (#1183)

Added new academic site

Signed-off-by: George Araújo <[email protected]>

Signed-off-by: George Araújo <[email protected]>

* Update README.md to encourage people to use `Use this template`  (#1167)

This PR changes README.md to encourage people to use `Use this template`
rather than `fork`.

### Differences between `Use this template` and fork
> - A new fork includes the entire commit history of the parent
repository, while a repository created from a template starts with a
single commit.
> - Commits to a fork don't appear in your contributions graph, while
commits to a repository created from a template do appear in your
contribution graph.
> - A fork can be a temporary way to contribute code to an existing
project, while creating a repository from a template starts a new
project quickly.
[Ref](https://docs.github.com/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template)

### Cons
Possible con would be that it is harder to pull the new changes from
this repo to the users' repos. It does not seem like impossible to do so
but it will require additonal actions on the users end.
- https://github.com/orgs/community/discussions/23528
-
https://stackoverflow.com/questions/56577184/github-pull-changes-from-a-template-repository

---------

Co-authored-by: Maruan <[email protected]>

* Add OSF to social (#1185)

* Update README.md

* Update 404.html wording for accessibility (#1194)

* Added related posts section (#1168)

* Add star to academic portfolios (#1202)

* feat: add wikipedia social (#1097)

I imagine more people have wikipedia accounts than wikidata entries
about them 😉

* OSF social link (#1217)

Added missing "/" in the OSF link.

* Added information about using github action (#1226)

By using this Github action it is possible to keep the derived
repository up-to-date with its template.

I am currently using this to keep my website up to date with the
template repository. An example of the PR this action creates can be
seen [here](george-gca/george-gca.github.io#13).

Signed-off-by: George Araújo <[email protected]>

* Added github 🏆 section in repositories (#1229)

Creates a new section with user trophies.

* Replace bin/deploy with GitHub Action (#1234)

This PR updates `deploy.yml` to use the GitHub Action [Deploy to GitHub Pages](https://github.com/marketplace/actions/deploy-to-github-pages).

* Avoiding specific warning on Google Chrome (#1268)

Avoids a warning that appears in the console when opening the site on Google Chrome

* Added related_posts false to the announcements front matter (#1266)

Added `related_posts: false` to the announcements front matter to avoid
errors like #1203. Also included explanation in README FAQ section.

* Update README.md: added new profile (#1263)

* Implemented copy code button feature (#1267)

Implemented support for copy code button in code blocks (#1262), also updated blog post about code to reflect it.

* Added more options to altmetric badge, changed to arxiv code first (#1269)

* update readme + remove sponsorship info (#1274)

majority of the recent improvements to al-folio have been truly driven
by a growing community of fans and contributors. this template has
gradually transformed from a low-key weekend project into a "public
good" of some sort used by thousands of people, university labs and
classes, and academic conference and workshops. as such, having personal
sponsorship info from the repository is no longer relevant.

as the community grows a bit further, we may have to think about
establishing some kind of governance around decisions of how al-folio is
supposed to evolve, which features to prioritize, and how to reward
contributors for their hard work. for now, these decisions will be made
by the project maintainers (active contributors are welcome to join the
team). and I'm all ears for proposals and suggestions!

* Fixed one-word typo in _config.yml (Non-Urgent) (#1288)

* Update README - Add new profile (#1285)

* Moved information about creating your repo to front (#1298)

Moved information about using this template to the beginning of the
installation part, added a few more documentation links in it, fixed
some typos.

---------

Signed-off-by: George Araújo <[email protected]>

* Fixed some typos in _config.yml and README.md (#1306)

* Fix assets sitemap exclusion (#1315)

* Implemented latest posts on about page (#1307)

Adresses #340

---------

Signed-off-by: George Araújo <[email protected]>

* Implemented details tag for distill blog  (#1321)

* Fix publication button spacing (#1322)

* docs: add george-gca as a contributor for code (#1323)

* Update README.md

* Add star to academic portfolios (#1333)

* Added support for table of contents in blog posts (#1278)

![image](https://user-images.githubusercontent.com/31376482/226411600-e5619108-3842-4c44-b582-61fcc94a1b0c.png)

---------

Signed-off-by: George Araújo <[email protected]>

* Fix typo (#1356)

* added one more researcher (#1353)

Added my own website to the "stars" section

* Fix copy code button position (#1348)

Fix issue #1303 by adding a code wrapper outside the code block. 
Ref:
https://stackoverflow.com/questions/60771472/position-a-button-such-that-it-wont-scroll-with-contents

* Scopus integration (#1364)

Fixes #1362

* Removed blog header-bar when title and description are empty (#1370)

When blog title and description are empty, go from this


![image](https://user-images.githubusercontent.com/31376482/234630799-f4c2cd46-7ad0-4d45-a0f6-2badcf0da558.png)

to this


![image](https://user-images.githubusercontent.com/31376482/234630683-f11c8a88-438a-4db3-974e-ba9184d5516f.png)

Signed-off-by: George Araujo <[email protected]>

* Increased allowed max size of news and latest posts in about (#1369)

Fixed size of news and latest posts in about page when visualizing in
mobile.

Signed-off-by: George Araujo <[email protected]>

* Fixed hard-coded bib files in templates (#1373)

The bibliography filename `papers.bib` is hard coded in templates, and
the equivalent setting in `_config.yml` is not used anywhere. So
changing the bib filename in `_config.yml` won't have any effects.

This PR replaces hard-coded filenames with the value from `_config.yml`.

* Fixed bug when using latex in title and description (#1361)

Fixes #1252.

Signed-off-by: George Araujo <[email protected]>

* Fixed news limit (#1359)

Fixes #1346.

---------

Signed-off-by: George Araujo <[email protected]>
Co-authored-by: Yifan Jiang <[email protected]>
Co-authored-by: Raffaele Mancuso <[email protected]>
Co-authored-by: Yue Gao <[email protected]>

* Toc sidebar (#1366)

Implemented #966.


![image](https://user-images.githubusercontent.com/31376482/234411523-b02087d9-a437-4f77-9f54-de5eef122439.png)

---------

Signed-off-by: George Araujo <[email protected]>

* Toc sidebar color fix (#1375)

Fixed color and increased font size of toc sidebar

---------

Signed-off-by: George Araujo <[email protected]>

* Reduced a little font-size in toc sidebar (#1376)

Signed-off-by: George Araujo <[email protected]>

* added star to academic examples (#1377)

---------

Signed-off-by: George Araujo <[email protected]>
Signed-off-by: Zuhair AlSader <[email protected]>
Signed-off-by: George Araújo <[email protected]>
Co-authored-by: Thiago <[email protected]>
Co-authored-by: George Oikonomou <[email protected]>
Co-authored-by: Maruan Al-Shedivat <[email protected]>
Co-authored-by: Roger Iyengar <[email protected]>
Co-authored-by: Maruan <[email protected]>
Co-authored-by: Yiru Chen <[email protected]>
Co-authored-by: Sean Quinn <[email protected]>
Co-authored-by: JD <[email protected]>
Co-authored-by: jkmacc-LANL <[email protected]>
Co-authored-by: Dinesh Natesan <[email protected]>
Co-authored-by: Daniel Sokolowski <[email protected]>
Co-authored-by: Dag7 <[email protected]>
Co-authored-by: Patrick Totzke <[email protected]>
Co-authored-by: Afonso Raposo <[email protected]>
Co-authored-by: nphair <[email protected]>
Co-authored-by: Ivan Puhachov <[email protected]>
Co-authored-by: Maruan Al-Shedivat <[email protected]>
Co-authored-by: Christoph Junghans <[email protected]>
Co-authored-by: Neeraj Gangwar <[email protected]>
Co-authored-by: Neeraj Gangwar <[email protected]>
Co-authored-by: Rohan Deb Sarkar <[email protected]>
Co-authored-by: Riddhiman Adib <[email protected]>
Co-authored-by: Julian Streyczek <[email protected]>
Co-authored-by: Sebastian Daza <[email protected]>
Co-authored-by: Maik Wöhl <[email protected]>
Co-authored-by: Amir Pourmand <[email protected]>
Co-authored-by: Steven Rick <[email protected]>
Co-authored-by: José M. Requena Plens <[email protected]>
Co-authored-by: Edsuns <[email protected]>
Co-authored-by: Karim de Fombelle <[email protected]>
Co-authored-by: Xiaochen Zhu <[email protected]>
Co-authored-by: Nipuna Weerasekara <[email protected]>
Co-authored-by: Julian Lehrer <[email protected]>
Co-authored-by: Jun-Liang Lin <[email protected]>
Co-authored-by: Ali Kuwajerwala <[email protected]>
Co-authored-by: Scott Lee Chua <[email protected]>
Co-authored-by: Jack Lloyd-Walters <[email protected]>
Co-authored-by: Vanshaj Kerni <[email protected]>
Co-authored-by: yyang768osu <[email protected]>
Co-authored-by: Viraj Thakkar <[email protected]>
Co-authored-by: Jiashu Xu <[email protected]>
Co-authored-by: Kun Wu <[email protected]>
Co-authored-by: Amala Wilson <[email protected]>
Co-authored-by: Tirtharaj Dash <[email protected]>
Co-authored-by: Guillaume Dalle <[email protected]>
Co-authored-by: Tønnes Nygaard <[email protected]>
Co-authored-by: Carolina Carreira <[email protected]>
Co-authored-by: Rohan Deb Sarkar <[email protected]>
Co-authored-by: Manan Dey <[email protected]>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Congcong Li <[email protected]>
Co-authored-by: johanneshoerner <[email protected]>
Co-authored-by: Ioannis Mavromatis <[email protected]>
Co-authored-by: gzwongkk <[email protected]>
Co-authored-by: Leandro A. Bugnon <[email protected]>
Co-authored-by: Tai D Nguyen <[email protected]>
Co-authored-by: Yavuz Alp Sencer ÖZTÜRK <[email protected]>
Co-authored-by: wristy <[email protected]>
Co-authored-by: Lucas Hosseini <[email protected]>
Co-authored-by: Dominik Straub <[email protected]>
Co-authored-by: Amir Hossein Kargaran <[email protected]>
Co-authored-by: Josh Veitch-Michaelis <[email protected]>
Co-authored-by: Carlos Morales <[email protected]>
Co-authored-by: George <[email protected]>
Co-authored-by: Simmo Saan <[email protected]>
Co-authored-by: Tyler Barna <[email protected]>
Co-authored-by: Miroslav Suzara <[email protected]>
Co-authored-by: Muhamamd Naufal Shidqi <[email protected]>
Co-authored-by: bruno vianna <[email protected]>
Co-authored-by: Junshen Xu <[email protected]>
Co-authored-by: Alireza Dehghanzadeh <[email protected]>
Co-authored-by: Andreas Kuster <[email protected]>
Co-authored-by: Andrea Gasparini <[email protected]>
Co-authored-by: Ellis Brown <[email protected]>
Co-authored-by: Noman Bashir <[email protected]>
Co-authored-by: Fares Meghdouri <[email protected]>
Co-authored-by: Mohammad Qodrati <[email protected]>
Co-authored-by: djherron <[email protected]>
Co-authored-by: Philip Wong <[email protected]>
Co-authored-by: Rohan Deb Sarkar <[email protected]>
Co-authored-by: Rodo-Singh <[email protected]>
Co-authored-by: ZhengLin Li <[email protected]>
Co-authored-by: Zuhair AlSader <[email protected]>
Co-authored-by: Kushin Mukherjee <[email protected]>
Co-authored-by: Divakar Verma <[email protected]>
Co-authored-by: Kotaro Suto <[email protected]>
Co-authored-by: Mathias Micheel <[email protected]>
Co-authored-by: Bashir Kazimi <[email protected]>
Co-authored-by: Allie <[email protected]>
Co-authored-by: Scott Lee Chua <[email protected]>
Co-authored-by: Do Hai Son <[email protected]>
Co-authored-by: Douglas <[email protected]>
Co-authored-by: Raphael Azorin <[email protected]>
Co-authored-by: Chen Chen <[email protected]>
Co-authored-by: gaspardbb <[email protected]>
Co-authored-by: Varun Iyer <[email protected]>
Co-authored-by: Furkan Akkurt <[email protected]>
Co-authored-by: Yuki M. Asano <[email protected]>
Co-authored-by: Yifan Jiang <[email protected]>
Co-authored-by: Raffaele Mancuso <[email protected]>
Co-authored-by: Yue Gao <[email protected]>
Co-authored-by: Hashe037 <[email protected]>
@fastzhong
Copy link

Such bad UX on Github, forget about the Github pages/actions/workflows, use Netlify or Vercel.

@haiyun-he
Copy link

Until now, the bug still remains...

Had the same problem, and found issue #342, where it was proposed to set the default branch back to master (delete any other master branch you may have created in between) and set gh-pages as source branch for Pages. Worked for me! :)

work for me too!

antchristou pushed a commit to antchristou/antchristou.github.io that referenced this issue Nov 20, 2023
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
artemyk pushed a commit to artemyk/artemyk.github.io that referenced this issue Jan 23, 2024
* Added proper instructions in personal webpages

Changed "For personal and organization webpages" part, tried to be as concise as possible, in accordance with: alshedivat#209 (comment)

* Update README.md

* Update README.md

Co-authored-by: Maruan <[email protected]>
@DiegoIBH
Copy link

I keep getting build and deployment error while trying to publish my gh pages, it workes locally, does anyone could help me ? Repository that I'm using. I'm using jekyll al-folio for my webpage. let me know if you need any more information.

I just re-run all jobs on the actions window and it worked.
Captura

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests