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

Fix several typos and bugs #2799

Merged
merged 5 commits into from
Feb 1, 2025
Merged

Conversation

HirokiHamaguchi
Copy link
Contributor

Pull Request

Hello. I'm Hiroki Hamaguchi and I'm really impressed with this repository.
Thank you very much for providing such a wonderful template.

Today, I'd like to contribute to this repository by fixing some problems.
I hope my contribution will be helpful to you.

If you have any questions or concerns, please feel free to ask me.

Fix typos of GitHub

This repository contains 44 instances of "GitHub" and 8 instances of "Github", including the author profile.

author_profile

The correct spelling is "GitHub".

GitHub

I fixed all of the "Github" to "GitHub", and confirmed that no issues occurred by checking all affected pages.

Fix link in talkmap.html

The Talk Map contains a hyperlink to the talkmap.ipynb file, but this link is broken.

brokenTalkmap

I fixed the link to the correct file path.

I checked that the link is now working properly, and the updated path is also consistent with the following sentence in talkmap.html.

Since other links pointing to the talkmap.ipynb were correct, I did not change them.

Fix the clock icons by fa-clock

The clock icon is not displayed correctly.

missingClock

The icon fa-clock-o was available in Font Awesome version 4, but now it seems to be removed in the current version.

Instead, we can use fa-clock in current version, which works fine.

fineClock

I replaced all 8 instances of fa-clock-o with fa-clock, and checked that the icon is now displayed correctly.

Fix the right-sidebar

As pointed out in this discussion, there are blank area in the right hand side of the page.

blankArea

I think this is not intentional, because this space was originally used for the right sidebar as seen in the Minimal Mistakes, rather than the blank area.

minimalMistake

To resolve this, as pointed out in the discussion, we can modify $right-sidebar-width-narrow, $right-sidebar-width, and $right-sidebar-width-wide in the SCSS file _sass/_variables.scss.

The side-effect of this modification is that the behavior of .sidebar__right in _sass/_sidebar.scss will be changed, but it seems not to be used anywhere in the current version. Therefore, I think this modification is safe.

To maintain the original design, I adjusted them by scaling the values by 0.1, not 0.0 (0.0 might be too narrow).

- $right-sidebar-width-narrow : 200px !default;
- $right-sidebar-width        : 300px !default;
- $right-sidebar-width-wide   : 400px !default;
+ $right-sidebar-width-narrow : 20px !default;
+ $right-sidebar-width        : 30px !default;
+ $right-sidebar-width-wide   : 40px !default;

Now, the space is removed, and there is no problem with the design.

removed space

Fix site-nav problem in jquery.greedy-navigation.js

Issue Description

First, let me explain the problem itself. As far as I know, there are no issues with this point.

For the sake of explanation, the device mode is used. I actually had this problem on my iPad. The same problem can be easily reproduced in a browser.

nav1

Then, simulate the rotation of the device.

nav2

Again, simulate the rotation of the device.

nav3

Now, although there is enough space, the site-nav bar only displays one item, not three items as before.

Solution

This is because the assets/js/plugins/jquery.greedy-navigation.js contains a bug.

The most important part of my fix is the following.

// There is space for another item in the nav
- if(availableSpace > breaks[breaks.length-1]) {
+ while(breaks.length > 0 && availableSpace > breaks[breaks.length-1]) {
  // Move the item to the visible list
  $hlinks.children().first().appendTo($vlinks);
  breaks.pop();
}
// Hide the dropdown btn if hidden list is empty
if(breaks.length < 1) {
  $btn.addClass('hidden');
+   $btn.removeClass('close');
  $hlinks.addClass('hidden');
}

Plus, I added the event listener to update the site-nav when the orientation is changed, which cannot be done by the original code.

+ screen.orientation.addEventListener("change", function() {
+   updateNav();
+ });

Verification

I build the code and confirmed that now the problem is solved without any side effects, as far as I checked.


Thank you for reading this long message.

I hope my contribution will be helpful to you.

Copy link
Collaborator

@rjzupkoii rjzupkoii left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work with these changes!

@rjzupkoii
Copy link
Collaborator

Thanks for putting this merge together and documenting all of the work done. This is a big help and as you pointed out, addresses issues like #2473.

@rjzupkoii rjzupkoii merged commit 460ac0c into academicpages:master Feb 1, 2025
steshinoki added a commit to steshinoki/steshinoki.github.io that referenced this pull request Feb 21, 2025
commit 4f527d6
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 15 13:09:56 2025 -0500

    Close academicpages#2841, with code from @gopisivakanth

commit 2ac9022
Merge: 660a578 e7b600b
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 9 13:14:29 2025 -0500

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit 660a578
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 9 13:14:28 2025 -0500

    Exclude publications from category-list, close academicpages#2820

commit e7b600b
Merge: d04ee55 ef6c1ce
Author: rjzupkoii <[email protected]>
Date:   Fri Feb 7 11:33:06 2025 -0500

    Merge pull request academicpages#2814 from librautoo/master

    update readme file

commit ef6c1ce
Author: librautoo <[email protected]>
Date:   Wed Feb 5 14:33:40 2025 +0800

    update readme file

commit d04ee55
Merge: 7f94030 b7379ff
Author: rjzupkoii <[email protected]>
Date:   Tue Feb 4 20:59:43 2025 -0500

    Merge pull request academicpages#2811 from hosiet/pr-fix-favicon

    Fix handling of favicon

commit b7379ff
Author: Boyuan Yang <[email protected]>
Date:   Fri Aug 16 21:39:57 2024 -0400

    Fix handling of favicon

    Follow the blog of https://blog.ghkk.net/post/how-to-favicon-in-2021-six-files-that-fit-most-needs/

    * Remove everything about mstile.
    * Regenerate favicon using SVG file from
      https://commons.wikimedia.org/wiki/File:OOjs_UI_icon_academic-progressive.svg
      with minor tweaks in SVG viewBox.
    * Provide .svg, .ico, 32x32, 192x192, 512x512, and apple 180x180 .png icons.

    This commit closes: academicpages#2337 .

commit 7f94030
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 2 15:47:48 2025 -0500

    Examples w/o bookmarks bar

commit c32e4b4
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 2 13:22:51 2025 -0500

    Alphabetize the order of hte settings

commit 78f3351
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 2 13:12:10 2025 -0500

    academicpages#851 add the theme previews

commit 4594e4b
Merge: 47b944e 0ccd873
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 2 12:56:42 2025 -0500

    Merge branch 'academicpages#137'

commit 0ccd873
Author: rjzupkoii <[email protected]>
Date:   Sun Feb 2 12:21:22 2025 -0500

    academicpages#137, academicpages#851, academicpages#911, academicpages#1031 cleaning up remainder of direct references to theme colors

commit 83a76ed
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 22:04:20 2025 -0500

    academicpages#137, academicpages#911 sync variables between themes

commit 75d868b
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 21:59:31 2025 -0500

    academicpages#137, academicpages#851, academicpages#911, academicpages#1031 dark theme that can be set via _config.yml

commit 2363012
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 21:19:36 2025 -0500

    Address issues with order

commit 077a671
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 20:13:54 2025 -0500

    academicpages#137 update to include theme as setting

commit e9ff0d0
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 20:11:09 2025 -0500

    academicpages#137 pull default theme into new directory

commit efa7892
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 20:07:40 2025 -0500

    Remove variables reference

commit d27ccb0
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:56:39 2025 -0500

    academicpages#137 consolidate into _themes.scss

commit e9b3774
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:44:16 2025 -0500

    Update organization of _sass

commit 122bd14
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:32:41 2025 -0500

    Update location for the layout

commit 22397f7
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:17:26 2025 -0500

    academicpages#137 correct the variable name

commit da4b443
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:07:35 2025 -0500

    Consolidate animations

commit e2b4ca2
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 19:04:49 2025 -0500

    Modernize syntax

commit 57346e4
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 15:19:10 2025 -0500

    Update order of color codes

commit a514a05
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 15:04:22 2025 -0500

    academicpages#137 updates for links

commit 8b4b631
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 14:57:57 2025 -0500

    academicpages#137 update base colors

commit a4acfd9
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 14:43:39 2025 -0500

    academicpages#137 update code

commit aaf064b
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 14:36:54 2025 -0500

    academicpages#137 updated border-color

commit 438e61c
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 14:28:48 2025 -0500

    academicpages#137  start progress on themes

commit 47b944e
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 13:24:45 2025 -0500

    Update README.md

commit 509397d
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 13:24:14 2025 -0500

    Update README.md

commit 3f946c5
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 13:23:57 2025 -0500

    Update README.md

commit 1ebab2b
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 13:09:02 2025 -0500

    Add GA updates to documentation, Close academicpages#265

commit 460ac0c
Merge: e53c946 b9e4c76
Author: rjzupkoii <[email protected]>
Date:   Sat Feb 1 12:46:35 2025 -0500

    Merge pull request academicpages#2799 from HirokiHamaguchi/master

    Fix several typos and bugs

commit b9e4c76
Author: hari64 <[email protected]>
Date:   Sat Feb 1 20:54:02 2025 +0900

    Fix site-nav problem in jquery.greedy-navigation.js

commit 71780d5
Author: hari64 <[email protected]>
Date:   Sat Feb 1 14:49:28 2025 +0900

    Adjust right-sidebar width to fix the spacing problem

commit bc79d8a
Author: hari64 <[email protected]>
Date:   Sat Feb 1 14:29:00 2025 +0900

    Fix the clock icons by fa-clock

commit 95e60fa
Author: hari64 <[email protected]>
Date:   Sat Feb 1 14:26:46 2025 +0900

    Fix link in talkmap.html

commit 837e279
Author: hari64 <[email protected]>
Date:   Sat Feb 1 14:25:00 2025 +0900

    Fix typos of GitHub

commit e53c946
Merge: d021750 cd9f918
Author: rjzupkoii <[email protected]>
Date:   Fri Jan 31 21:48:19 2025 -0500

    Merge pull request academicpages#2797 from non-det-alle/docker-fix

    Fix running locally with Docker

commit d021750
Author: rjzupkoii <[email protected]>
Date:   Fri Jan 31 21:46:22 2025 -0500

    academicpages#2792 fix bad path

commit cd9f918
Author: Alessandro Aimi <[email protected]>
Date:   Fri Jan 31 20:00:34 2025 +0100

    Fix running locally with Docker

commit 1acca92
Merge: 15c16b8 26c37c5
Author: rjzupkoii <[email protected]>
Date:   Sun Dec 29 19:17:21 2024 -0500

    Merge pull request academicpages#2717 from dimitra-maoutsa/master

    Update for scrapping talk location through github actions

commit 26c37c5
Author: rjzupkoii <[email protected]>
Date:   Sun Dec 29 19:17:06 2024 -0500

    Update _config.yml

    Keep talkmap_link false by default

commit 7be61a3
Author: Dimitra Maoutsa <[email protected]>
Date:   Sun Dec 29 21:37:12 2024 +0100

    Update _config.yml

commit a9501b9
Author: Dimitra Maoutsa <[email protected]>
Date:   Sun Dec 29 21:36:39 2024 +0100

    Create scrape_talks.yml

commit 15c16b8
Merge: be55d03 1ca871f
Author: rjzupkoii <[email protected]>
Date:   Sat Dec 28 16:13:37 2024 -0500

    Merge pull request academicpages#2713 from jacob-thompson/x-twitter

    replace Twitter share button with X share button

commit be55d03
Merge: 77b7368 cfb4d8a
Author: rjzupkoii <[email protected]>
Date:   Sat Dec 28 16:12:57 2024 -0500

    Merge pull request academicpages#2712 from jacob-thompson/master

    fix: Sitemap grammatical error

commit 1ca871f
Author: Jacob Thompson <[email protected]>
Date:   Fri Dec 27 16:19:28 2024 -0800

    replace Twitter share button with X share button

commit cfb4d8a
Author: Jacob Thompson <[email protected]>
Date:   Fri Dec 27 12:42:31 2024 -0800

    fix Sitemap grammatical error

commit 77b7368
Merge: e2a7acf a290b4d
Author: rjzupkoii <[email protected]>
Date:   Tue Dec 17 20:37:13 2024 -0500

    Merge pull request academicpages#2690 from FahimFBA/issue-2689

    fix: typo and extra line break

commit a290b4d
Author: FahimFBA <[email protected]>
Date:   Tue Dec 17 10:58:14 2024 +0600

    fix: typo and extra line break

    resolved issue 2689 and added extra line break to make the docs look better

commit e2a7acf
Merge: 4b94adc bd6cfdb
Author: rjzupkoii <[email protected]>
Date:   Mon Dec 16 23:08:06 2024 -0500

    Merge pull request academicpages#2688 from FahimFBA/issue-2687

    add: docker command related instructions for Windows users

commit bd6cfdb
Author: Md. Fahim Bin Amin <[email protected]>
Date:   Tue Dec 17 00:02:14 2024 +0600

    add: docker command related instructions for Windows users

commit 4b94adc
Author: rjzupkoii <[email protected]>
Date:   Sun Dec 15 15:46:51 2024 -0500

    Close academicpages#2637 toggle the wrapper on resize

commit a932981
Merge: fb54e7a 77b1d9d
Author: rjzupkoii <[email protected]>
Date:   Mon Dec 2 16:07:54 2024 -0500

    Merge pull request academicpages#2651 from oikos99/fix_link_contrast

    Improved color contrast for link text

commit 77b1d9d
Author: Paul Chiou <[email protected]>
Date:   Mon Dec 2 11:43:23 2024 -0800

    improved link color contrast (updated color)

    updated the link text color from #236070 to #2F7F93 for improved readability and contrast as recommended by the developers

commit b42f6d1
Author: Paul Chiou <[email protected]>
Date:   Sun Dec 1 13:30:27 2024 -0800

    improved link color contrast

    changed the links' blue color to a darker shade to meet color contrast (web accessibility) standards

commit fb54e7a
Merge: 79f5f6f bae6977
Author: rjzupkoii <[email protected]>
Date:   Sat Nov 30 22:01:26 2024 -0500

    Merge pull request academicpages#2645 from tomrannosaurus/patch-1

    Fixed non-working "redirect_from"

commit bae6977
Author: tomrannosaurus <[email protected]>
Date:   Sat Nov 30 17:09:37 2024 -0500

    Update _config.yml

    added   - jekyll-redirect-from to plugins and whitelist

commit c0249a2
Author: tomrannosaurus <[email protected]>
Date:   Sat Nov 30 17:06:08 2024 -0500

    Update Gemfile

    add   gem 'jekyll-redirect-from'

commit 79f5f6f
Merge: 04d9b5f 0f00a7a
Author: rjzupkoii <[email protected]>
Date:   Sun Nov 24 18:59:02 2024 -0500

    Merge pull request academicpages#2627 from mecaneer23/patch-1

    fix: typo

commit 0f00a7a
Author: Gabriel Natenshon <[email protected]>
Date:   Sat Nov 23 14:50:50 2024 -0600

    fix: typo

commit 04d9b5f
Merge: e9f9c45 2eea7b8
Author: rjzupkoii <[email protected]>
Date:   Sun Nov 17 12:30:21 2024 -0500

    Merge pull request academicpages#2611 from TankTechnology/fix-zhihu-url

    Fix typo in Zhihu URL protocol in `_includes/author-profile.html`

commit 2eea7b8
Author: TankTechnology <[email protected]>
Date:   Mon Nov 18 00:05:31 2024 +0800

    Fix typo in Zhihu URL protocol in

commit e9f9c45
Author: rjzupkoii <[email protected]>
Date:   Mon Nov 11 10:26:35 2024 -0500

    academicpages#2591 clarify URL in config

commit d810cdf
Author: rjzupkoii <[email protected]>
Date:   Mon Oct 28 21:46:53 2024 -0400

    Additional pointers for help

commit f53c209
Author: rjzupkoii <[email protected]>
Date:   Mon Oct 28 21:40:15 2024 -0400

    Update README with example

commit 61109fe
Author: rjzupkoii <[email protected]>
Date:   Mon Oct 28 21:36:05 2024 -0400

    Close academicpages#2493 Update for Bing crawler

commit df10002
Author: rjzupkoii <[email protected]>
Date:   Mon Oct 28 21:33:02 2024 -0400

    Adjustments to the about

commit 77e6eb4
Merge: 8d09856 31ae7dc
Author: rjzupkoii <[email protected]>
Date:   Sun Oct 27 22:38:38 2024 -0400

    Merge pull request academicpages#2551 from dtortorella/master

    Add `scopus` in academic websites

commit 31ae7dc
Author: Domenico Tortorella <[email protected]>
Date:   Sun Oct 27 19:43:00 2024 +0100

    Add `scopus` in academic websites

commit 8d09856
Merge: a1a88b6 d23a5e9
Author: rjzupkoii <[email protected]>
Date:   Fri Oct 18 17:15:45 2024 -0400

    Merge pull request academicpages#2535 from opasche/archive-single-slidesurl-fix

    Slides URL fix in "archive-single.html" includes template

commit d23a5e9
Author: OPasche <[email protected]>
Date:   Fri Oct 18 22:19:39 2024 +0200

    Update archive-single.html

    In the "archive-single" include, the "Download" word is repeated twice in the case when only a slidesURL is given.
    An extra paragraph ending is also mistakenly present.

commit a1a88b6
Merge: 9ec003f d493911
Author: rjzupkoii <[email protected]>
Date:   Thu Oct 3 08:46:16 2024 -0400

    Merge pull request academicpages#2489 from zoelesv/master

    Update Dockerfile academicpages#2488

commit d493911
Author: Zoe <[email protected]>
Date:   Tue Oct 1 21:25:21 2024 -0700

    Update Dockerfile

commit 9ec003f
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 29 12:23:37 2024 -0400

    academicpages#1093 MV notebook to generator directory

commit 392368c
Merge: b90e6a3 b9a77f9
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 29 12:21:55 2024 -0400

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit b90e6a3
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 29 12:21:52 2024 -0400

    Closes academicpages#2469 with update to only use username

commit b9a77f9
Merge: 73d65ff 784887a
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 29 12:20:06 2024 -0400

    Merge pull request academicpages#2480 from x-zang/patch-1

    improve alignment of "employer" sidebar

commit 784887a
Author: Xiaofei (Carl) Zang <[email protected]>
Date:   Sat Sep 28 17:35:35 2024 -0400

    Update author-profile.html

    improve alignment of "employer" sidebar

commit 73d65ff
Merge: d8c7955 31a8ce7
Author: rjzupkoii <[email protected]>
Date:   Thu Sep 26 08:18:14 2024 -0400

    Merge pull request academicpages#2467 from c-martinez/harvest-orcid

    Add notebook to fetch publication information from orcid

commit 31a8ce7
Author: Carlos Martinez <[email protected]>
Date:   Mon Sep 23 22:29:09 2024 +0200

    Add notebook to fetch publication information from orcid

commit d8c7955
Merge: 05d1019 3f6ba41
Author: rjzupkoii <[email protected]>
Date:   Wed Sep 18 13:36:10 2024 -0400

    Merge pull request academicpages#2451 from Samir-Rashid/fix-padding-misalignment

    Fix padding misalignment

commit 05d1019
Merge: dc499dc a543542
Author: rjzupkoii <[email protected]>
Date:   Wed Sep 18 13:32:42 2024 -0400

    Merge pull request academicpages#2450 from Samir-Rashid/fix-toc-width

    Fix toc crop (academicpages#221)

commit 3f6ba41
Author: Samir Rashid <[email protected]>
Date:   Wed Sep 18 17:10:50 2024 +0000

    Fix misalignment of navigation bar with post body

    There was a regression in the template updates where the navigation bar no longer aligns with the post left margin at normal viewport.

commit cbc57c4
Author: Samir Rashid <[email protected]>
Date:   Wed Sep 18 17:09:52 2024 +0000

    Reduce excessive footer padding

commit a543542
Author: Samir Rashid <[email protected]>
Date:   Wed Sep 18 16:53:32 2024 +0000

    Fix toc crop (academicpages#221)

    Fix by @qhuang-math. I have also removed underlining of toc links, which was being overridden by post body css.

commit dc499dc
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 22:02:27 2024 -0400

    academicpages#828 adjustments to account for GitHub Pages limitations

commit 50001df
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 21:33:36 2024 -0400

    academicpages#828 different format string

commit 3ddeda5
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 21:16:59 2024 -0400

    Closes academicpages#828 with update to put the pages last update in the footer.

commit 9eec020
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 20:57:33 2024 -0400

    Minor formatting

commit 1dcebd1
Merge: 66e2f20 7aa6181
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 20:53:51 2024 -0400

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit 66e2f20
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 20:53:49 2024 -0400

    Closes academicpages#146 with information the details HTML tag

commit 7aa6181
Merge: ef518d5 e37c098
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 20:41:46 2024 -0400

    Merge pull request academicpages#2445 from Samir-Rashid/fix-custom-comments

    Fix custom comments appearing at bottom of page

commit e37c098
Author: Samir Rashid <[email protected]>
Date:   Wed Sep 18 00:26:45 2024 +0000

    bug: comments appear at bottom of page

commit ef518d5
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 19:56:47 2024 -0400

    Update README.md

commit 9639cbc
Merge: 0d4e024 40e3c2b
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 17 19:47:31 2024 -0400

    Merge pull request academicpages#2441 from abcsds/master

    Add a dockerfile

commit 40e3c2b
Author: Alberto Barradas <[email protected]>
Date:   Tue Sep 17 12:30:07 2024 -0600

    Add a dockerfile

commit 0d4e024
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 14:16:44 2024 -0400

    Closes academicpages#2287, academicpages#534 with updates to documentation, better emoji generation

commit 02973e0
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 13:51:39 2024 -0400

    Closes academicpages#1975 RM stickyfill in favor of native browser support

commit a683245
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 13:39:05 2024 -0400

    academicpages#1975 update smooth scroll to NPM

commit cd15f4a
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 13:32:48 2024 -0400

    academicpages#1975 update magnific-popup to NPM

commit 9706914
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 13:20:53 2024 -0400

    academicpages#1975 update fitvids to NPM

commit 6c98d76
Author: rjzupkoii <[email protected]>
Date:   Sun Sep 15 12:33:57 2024 -0400

    academicpages#1975 cleaning up the gem files a bit

commit 95118f6
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:56:50 2024 -0400

    Update README.md

commit 2fe408f
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:56:02 2024 -0400

    Update README.md

commit 4b8421f
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:52:23 2024 -0400

    Update README.md

commit ade2768
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:49:11 2024 -0400

    Update README.md

commit 4189d06
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:47:56 2024 -0400

    Update README.md

commit e63ceb1
Author: rjzupkoii <[email protected]>
Date:   Sat Sep 14 13:47:40 2024 -0400

    Update README.md

commit 3af723c
Merge: 6d5d9a7 803166b
Author: rjzupkoii <[email protected]>
Date:   Wed Sep 11 10:58:32 2024 -0400

    Merge pull request academicpages#2419 from edbrito-swdev/fix-youtube-url-generation

    Fixing YouTube URL generation in author-profile.html

commit 803166b
Author: edbrito-swdev <[email protected]>
Date:   Wed Sep 11 15:52:09 2024 +0100

    Fixing YouTube URL generation in author-profile.html

    YouTube does not use /user/username at the moment. If a person has a YouTube handle, the URL is:
    www.youtube.com/@HANDLE

    The fix is very minimal but I needed it for my website so I've also added it here.

commit 6d5d9a7
Author: rjzupkoii <[email protected]>
Date:   Tue Sep 10 20:03:23 2024 -0400

    Update README.md

commit 823648a
Merge: 4097d7e 0c49f64
Author: rjzupkoii <[email protected]>
Date:   Thu Aug 29 09:20:01 2024 -0400

    Merge pull request academicpages#2376 from 02hyc/master

    fix: the correct url of lastfm

commit 0c49f64
Author: Yanchen Huang <[email protected]>
Date:   Thu Aug 29 11:36:06 2024 +0800

    fix: lastfm url

commit 4097d7e
Author: rjzupkoii <[email protected]>
Date:   Sun Aug 11 17:23:09 2024 -0400

    Closes academicpages#48 with a more general and customizable approach

commit aff2053
Author: rjzupkoii <[email protected]>
Date:   Sun Aug 11 14:46:19 2024 -0400

    Alphabetize the excludes

commit 90d592a
Author: rjzupkoii <[email protected]>
Date:   Sun Aug 11 13:51:37 2024 -0400

    academicpages#2318 updating documentation a bit

commit 09e3161
Author: rjzupkoii <[email protected]>
Date:   Thu Aug 8 22:16:08 2024 -0400

    academicpages#2316 update padding

commit a5ede61
Author: rjzupkoii <[email protected]>
Date:   Sun Jun 16 10:31:17 2024 -0400

    Update README.md

commit 23c37c2
Merge: 5dee723 08ffadc
Author: rjzupkoii <[email protected]>
Date:   Sun Jun 16 10:26:16 2024 -0400

    Merge pull request academicpages#2193 from zarela/updates-readme

    README Update: Adds commands for MacOS

commit 08ffadc
Author: Zarela <[email protected]>
Date:   Sat Jun 15 23:58:55 2024 -0400

    Adds commands for MacOS
cjd04 pushed a commit to cjd04/cjd04.github.io that referenced this pull request Feb 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants