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

update #1

Merged
merged 95 commits into from
Feb 8, 2024
Merged

update #1

merged 95 commits into from
Feb 8, 2024

Commits on Dec 1, 2023

  1. Fixes #1584 (#1971)

    Removed link to blog when showing years in news
    
    Signed-off-by: George Araujo <[email protected]>
    george-gca authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    f92d60f View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Update cv.md (#1973)

    Fix path typo in description
    civita authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    6130018 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Implemented support for tikzjax (#1990)

    Implemented #1976.
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    1997186 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Fixed redirect post access from blog archive (#1994)

    Fixes #1831
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    f9b8d45 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Ensure the zoomed image is in front of toc sidebar (#1998)

    Fixes #1888
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    36e6ff8 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. Updated README to explictly tell how to proceed on fresh install (#1993)

    Updated README to explicitly tell how to proceed on creating your own
    version based on this template. Also removed the video tutorial since it
    was for an older version, recommending to fork the repo and it was
    missing the `--lsi` parameter from jekyll command. Also was not using
    docker, the current recommended way.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    1fa3feb View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. check for active children in submenus (#1869)

    This patch checks, if the title of the current page matches with the
    title of a submenu child. If so, it sets the submenu and the
    corresponding child as active, highlighting it in the header.
    Tianmaru authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    a1a9250 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6119d06 View commit details
    Browse the repository at this point in the history
  3. Now blog can be reorganized in header (#1996)

    Fixes #1559 #1795
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    0795059 View commit details
    Browse the repository at this point in the history
  4. Added video button to bib entries (#2008)

    When the video entry is added to bib:
    
    e.g.,
    
    ```
    {
    ...
    video={https://www.youtube.com/embed/jNQXAC9IVRw}
    ...
    }
    ```
    A dedicated button appears for videos. When clicked, a playable video
    appears under the research article (like abstracts and bibtex)
    fabawi authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    45bb74e View commit details
    Browse the repository at this point in the history
  5. bring back repo_id and category_id in giscus section (#1892)

    After deploying my website (Cloudflare Pages), my Giscus did not work, I
    realized these two paramesters are removed. After adding them again, my
    Giscus worked correctly.
    These new values are values from previous commits of original repository
    
    ---------
    
    Co-authored-by: Maruan Al-Shedivat <[email protected]>
    alerezaaa and alshedivat authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    70d9ca9 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2023

  1. Responsive image fix (#2014)

    Fixes #1967 
    
    Update the way responsive images are used to only use one srcset, and
    add corresponding `sizes` attribute to the relevant layouts and
    templates.
    I did not go through and add `sizes` to all the example posts/projects.
    When `sizes` is not specified by the user, the `figure.html` template
    defaults to 95% the width of the viewport which should work fine for
    most cases; users can optimize further if they wish by feeding `sizes`
    into the template.
    
    Additionally:
     - Enabled support for .gif to .webp compression
    - fix error in jekyll-imagemagick config where all images were resized
    to be 800px or less. (for example img-1400.webp was actually only 800px
    wide, etc.)
    - added note about making sure imagemagick is installed before enabling
    it in responsive images section of `_config.yml`
    nWestie authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    fb294e3 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. fix live-reloading in docker (#2022)

    Fix #2021 : The webpage hosted by docker would not be automatically
    reloaded because the port used for live-reloading (port 35729) is not
    forwarded.
    wayne-tsai authored Dec 28, 2023
    Configuration menu
    Copy the full SHA
    f05fb7b View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2023

  1. Remove imagemagick strip (#2028)

    I had added -strip arg to the imagemagick call as it is generally
    desirable to strip metadata from images before publishing them, however
    it seems to occasionally cause issues with jekyll-imagemagick
    auto-regeneration, regenerating images even when they have not changed.
    nWestie authored Dec 30, 2023
    Configuration menu
    Copy the full SHA
    da5065f View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2024

  1. Configuration menu
    Copy the full SHA
    86ada06 View commit details
    Browse the repository at this point in the history
  2. Changed mermaid support in template (#1992)

    Fix #1609
    
    ---------
    
    Signed-off-by: George Araujo <[email protected]>
    Co-authored-by: Maruan Al-Shedivat <[email protected]>
    george-gca and alshedivat authored Jan 2, 2024
    Configuration menu
    Copy the full SHA
    92ac10a View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Upgrading the README file (#2034)

    I decided to break the README file into different ones to declutter it
    from the main page. Also adding some more explanation on the structure
    of the template. Tackling #2032 and #2033
    
    ---------
    
    Signed-off-by: George Araujo <[email protected]>
    george-gca authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    4a55cd1 View commit details
    Browse the repository at this point in the history
  2. Added information about using wsl on Windows (#2040)

    Signed-off-by: George Araujo <[email protected]>
    george-gca authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    7b0ca12 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Configuration menu
    Copy the full SHA
    feb9c9e View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Added citation examples, simplified citation code (#2056)

    Since the citation file and other stuff is already defined in
    `_config.yml`, removed them when calling `{% bibliography %}`. Also
    realized that `jekyll-scholar` helps in displaying only the papers cited
    in page, changed to use that.
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    e3997d0 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    4ea7f5b View commit details
    Browse the repository at this point in the history
  2. Normalizing coauthor names before search (#2057)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    60a09ed View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. format code with prettier.io (#2048)

    summary:
    - adds prettier formatter configuration
    - formats the entire repo using prettier, ignoring minified files
    (`*.min.css`) and heavy generated html
    - changes extensions of all `.html` files to `.liquid`, which is more
    correct and necessary for prettier to work correctly
    - replaces "%-" and "-%" with just "%" — manual liquid formatting using
    minus signs is superfluous since we are compressing and minifying the
    code anyway
    - adds CI action for running prettier check on PR and pushes to master
    alshedivat authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    beb6f27 View commit details
    Browse the repository at this point in the history
  2. Add .git-blame-ignore-revs

    alshedivat committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    7e8ca8f View commit details
    Browse the repository at this point in the history
  3. Move news and 404 to pages (#2060)

    moves news and 404 from repo root dir to `_pages/` where they are
    supposed to be + changes their extensions to `.md`
    alshedivat authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    7c279b1 View commit details
    Browse the repository at this point in the history
  4. Fix prettier (#2062)

    Changed rule to minified files, reverted changes to minified files
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    2d34024 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    982a5fe View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Fixed small typo (#2064)

    instalation -> installation
    
    Thank you for this resource!
    Sam-Bieberich authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    aabe1e5 View commit details
    Browse the repository at this point in the history
  2. Added additional user to README.md (#2063)

    Added new user to academics section in readme. 
    
    Thank you for this great resource!
    Sam-Bieberich authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    568e9cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a20536 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cc83a12 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5459ef1 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Fix custom blockquotes (#2071)

    Fixed issue #2066. Removed `>` in front of `{: .block-tip }` which was
    introduced by prettier in the example post.
    YifanJiang233 authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    0a737aa View commit details
    Browse the repository at this point in the history
  2. Fix broken links (#2077)

    Added GitHub action to check for broken links in repo before commit,
    ignoring files with liquid tags since these were not yet processed and
    also README since some sites created from this template doesn't have
    valid urls anymore. Fixed some broken links in repo.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    71f054c View commit details
    Browse the repository at this point in the history
  3. Link checks on deploy (#2079)

    Added another GitHub action to check for broken local links on version
    of the site that will be deployed.
    
    The `broken-links` action check for broken links considering
    documentation files (like INSTALLING.md) and also pages like
    [_pages/about.md](https://github.com/alshedivat/al-folio/blob/master/_pages/about.md),
    but it can't check for broken links when the link will be handled by
    jekyll tags (like in
    [_pages/blog.md](https://github.com/alshedivat/al-folio/blob/master/_pages/blog.md).
    
    With `broken-links-site` we can check if all the links that will be used
    on the final site that refer to local files are correct. Focusing only
    on local files since this would end up calling too many checks for
    library files, like
    `https://unpkg.com/[email protected]/dist/bootstrap-table.min.css`.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    30f3c14 View commit details
    Browse the repository at this point in the history
  4. Axe accessibility test support (#2080)

    Added GitHub action to do axe accessibility tests with [axe
    cli](https://github.com/dequelabs/axe-core-npm/tree/develop/packages/cli).
    I believe it is best by default to let this be run only manually, since
    fixing some of the issues are not straightforward (I haven't fixed them
    all for this template yet).
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    1775a9a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f669b23 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    cfe13d6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c519061 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3aa3133 View commit details
    Browse the repository at this point in the history
  4. Updated toc on README.md

    george-gca authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    a843b3c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d8298a View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Adding star (#2095)

    Thank you all!!!
    afraniomelo authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    1d4a8c7 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Changed conditions of running GitHub actions (#2082)

    The GitHub actions were running everytime a new commit was made to the
    repo, but that wasn't needed. For example, we don't need to try to
    create a new docker image if the libraries didn't change, same to build
    the whole site after a change in the README.md.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    04f7b04 View commit details
    Browse the repository at this point in the history
  2. Downgrade ruby version (#2098)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    6700000 View commit details
    Browse the repository at this point in the history
  3. Update INSTALL.md (#2091)

    pourmand1376 authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    7c617d8 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2024

  1. Configuration menu
    Copy the full SHA
    711af76 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2024

  1. Added one more researcher using al-folio (#2105)

    Added my own website as a star to the "Academics" section
    JonaRuthardt authored Jan 21, 2024
    Configuration menu
    Copy the full SHA
    30f7ab0 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Configuration menu
    Copy the full SHA
    65c5c8a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3927200 View commit details
    Browse the repository at this point in the history
  3. Prettier check now generates a diff comment on PR (#2085)

    Splitted prettier GitHub action into two:
    - `on push`, only runs on direct pushes, if test fails generates an
    artifact (that lasts for 3 days) with an html version of the changes
    needed to pass prettier test
    - `on PR`, only runs on PRs, if test fails comments on the PR with the
    HTML content of the diff
    
    I couldn't actually test the `on PR` version since it needs to be on a
    PR in the master branch, so this will only be triggered after this PR is
    accepted, and for the next PR that fails prettier test.
    
    PS: currently the artifact is a zip file with the html inside. It is not
    currently possible to generate it other way, we have to wait for [this
    issue](actions/upload-artifact#14) to be
    closed.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    8af6b73 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7ed8f49 View commit details
    Browse the repository at this point in the history
  5. Changed how prettier comments on PR works (#2112)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    27d2fa0 View commit details
    Browse the repository at this point in the history
  6. Fixed prettier actions (#2113)

    After some thorough testing, finally made prettier on PR work. Since an
    html file can't be used as comment on GitHub, changed to simply point to
    the action that failed and to the file containing the html diff.
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    bbaae0a View commit details
    Browse the repository at this point in the history
  7. Moved prettier comment on PR to its own action (#2114)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    db0a92b View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Added Lighthouse test GitHub action (#2084)

    Added support for Lighthouse test as a GitHub action, and it appears
    like
    [this](https://github.com/george-gca/multi-language-al-folio?tab=readme-ov-file#lighthouse-pagespeed-insights).
    The only thing missing is for @alshedivat to create a [repository
    secret](https://github.com/MyActionWay/lighthouse-badger-workflows#lighthouse-badger-easyyml)
    named `LIGHTHOUSE_BADGER_TOKEN` with the information needed.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    b83a0e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0510031 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    25eac65 View commit details
    Browse the repository at this point in the history
  4. Added anchor to category sections (#2006)

    Added anchor to categories so one could navigate to the category section
    from the URL:
    
    e.g.,
    
    https://alshedivat.github.io/al-folio/projects#fun
    fabawi authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    10507a8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8dd678c View commit details
    Browse the repository at this point in the history
  6. Improved issues templates (#2110)

    Since a lot of issues opened are just questions that should be opened as
    so, and sometimes the issue template is just not followed, I decided to
    make opening new issues a little more "enforced", if not clear.
    
    I based the new templates on the ones from [pytorch
    lightning](https://github.com/Lightning-AI/pytorch-lightning/issues/new/choose),
    which I think are pretty good. The visuals will only appear after the
    merge is processed, but you can have an idea of how it will look like by
    checking their templates and how they look.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    ec9571a View commit details
    Browse the repository at this point in the history
  7. Removed 0 from bug report

    george-gca authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    b0b19a1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2fa8141 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6fcc283 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fc23860 View commit details
    Browse the repository at this point in the history
  11. Fixed url in config.yml

    george-gca authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    7d861cb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c99a453 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0c08237 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7638547 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1d84621 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Configuration menu
    Copy the full SHA
    a7d6b37 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2024

  1. Configuration menu
    Copy the full SHA
    3ec0ff4 View commit details
    Browse the repository at this point in the history
  2. Added Echarts support (#2129)

    Since I added support for chart.js and while doing so found some other
    wonderful charting libraries, I thought, why not give support to some
    more? So adding support to [Apache
    Echarts](https://echarts.apache.org/en/index.html).
    
    
    ![image](https://github.com/alshedivat/al-folio/assets/31376482/088f0932-524f-4fcd-a34b-b132f569a675)
    
    
    ![image](https://github.com/alshedivat/al-folio/assets/31376482/36bfe4f8-a9d1-4b6d-a912-fb40ba3b5337)
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 27, 2024
    Configuration menu
    Copy the full SHA
    4f6fe1a View commit details
    Browse the repository at this point in the history
  3. GeoJSON support (#2130)

    george-gca authored Jan 27, 2024
    Configuration menu
    Copy the full SHA
    1492cb9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f6bb6b5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    53fb011 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2024

  1. Closing #2122 (#2135)

    Added lighthouse badger token info to FAQ
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 28, 2024
    Configuration menu
    Copy the full SHA
    f69d99a View commit details
    Browse the repository at this point in the history
  2. Workflow fix (#2136)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 28, 2024
    Configuration menu
    Copy the full SHA
    2492ab3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8e93db5 View commit details
    Browse the repository at this point in the history
  4. Support for diff2html (#2133)

    Added support to display diff code in a prettier way with
    [diff2html](https://diff2html.xyz/).
    
    
    ![image](https://github.com/alshedivat/al-folio/assets/31376482/5f93b09c-3850-499a-999b-cb0ae13fddae)
    
    It displays code like [in this
    example](https://diff2html.xyz/demo.html).
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 28, 2024
    Configuration menu
    Copy the full SHA
    ef84782 View commit details
    Browse the repository at this point in the history
  5. Move libs versions to config (#2139)

    Moved libs versions and hashes to `_config.yml`.
    
    Fixes #2067.
    
    Deferring everything possible to keep pages loads fast.
    
    ---------
    
    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 28, 2024
    Configuration menu
    Copy the full SHA
    06bc367 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    43a3dd9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1935a2a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3c80fdb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2356aea View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5337984 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f3d3efa View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fa5b411 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Configuration menu
    Copy the full SHA
    e977319 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Fixed axe workflow (#2149)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    18f7307 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. improved redirect mapping (#2157)

    In reference to issue:
    #1818
    
    Redirect cases were only happening on the surface level, essentially
    just affecting the links on [blog
    index](https://alshedivat.github.io/al-folio/blog/page/4/index.htm) and
    [year tag](https://alshedivat.github.io/al-folio/blog/2022/). However,
    from the actual
    [site](https://alshedivat.github.io/al-folio/blog/2022/redirect/), it
    would automatically redirect to the `base_url` rather than the actual
    `redirect`.
    
    In my update, if `redirect: true`, like it is in `404.md`, redirect
    behavior is the same, redirecting to the `base_url`. If it is an
    external link, then the redirect is external. And finally if it is an
    internal redirect, like it is in
    https://alshedivat.github.io/al-folio/blog/2022/redirect/, than the
    redirect is `page.redirect | relative_url`
    asboyer authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    ae0c1a6 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Updated FAQ with old repository information (#2161)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    c39df67 View commit details
    Browse the repository at this point in the history
  2. Added jekyll-diagrams error to FAQ (#2162)

    Signed-off-by: George Araújo <[email protected]>
    george-gca authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    4cf657e View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. center footer text by default (#2165)

    This PR changes the footer text on the website (for both the sticky and
    fixed footer) to be centered by default. This change is based on the
    discussion post #257.
    eolesinski authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    1ce5865 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Fix Image Dimension Styles for Better Responsiveness (#2166)

    In this pull request, I've made adjustments to the image element's
    handling of dimension properties. Previously, `min-width`, `min-height`,
    `max-width`, and `max-height` were incorrectly placed as HTML attributes
    on the `<img>` tag, which is not supported for these CSS properties.
    This oversight could lead to issues with image responsiveness and layout
    stability.
    
    Changes:
    - Moved `min-width`, `min-height`, `max-width`, and `max-height`
    properties into the `style` attribute of the `<img>` tag. This change
    ensures that these properties are correctly applied and recognized as
    CSS properties, enhancing the responsiveness and flexibility of our
    image displays.
    - Retained `width` and `height` as attributes on the `<img>` tag to
    maintain the intrinsic aspect ratio of images and help the browser
    allocate space before images are fully loaded, improving the page load
    experience.
    
    These adjustments will ensure that our images are more responsive and
    better adhere to the specified dimensions, improving the overall user
    experience for the template.
    ZL-Asica authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    7c2e1c2 View commit details
    Browse the repository at this point in the history