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

theme skin #137

Closed
katsu1110 opened this issue Sep 2, 2018 · 28 comments
Closed

theme skin #137

katsu1110 opened this issue Sep 2, 2018 · 28 comments
Assignees
Milestone

Comments

@katsu1110
Copy link

Thanks for a great repos. Is there a way to change the color skin (e.g. minimal_mistakes_skin) from the default?

@katsu1110
Copy link
Author

I kind of made it work, by disabling 'assets' by putting 'assets' into the exclude list in the _config.yml.
If you do it, you can change the skin of your website by putting the following on top of everything in the _config.yml

plugins:

  • jekyll-remote-theme
    remote_theme : "mmistakes/minimal-mistakes"
    minimal_mistakes_skin : "dark" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"

@derekpowell
Copy link

I'd like to try this out, could you write that code in a code block?

@katsu1110
Copy link
Author

katsu1110 commented Sep 11, 2018

Oh yes, sure

simply add the following in the beginning of your "_config.yml"

plugins:
  - jekyll-remote-theme
remote_theme           : "mmistakes/minimal-mistakes"
minimal_mistakes_skin    : "dark" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"


Then just put 'assets' in the list of 'exclude' in the "_config.yml" to disable all the css.

# Reading Files
include:
  - .htaccess
  - _pages
  - files
exclude:
  - "*.sublime-project"
  - "*.sublime-workspace"
  - .asset-cache
  - .bundle
  - .jekyll-assets-cache
  - .sass-cache
  - assets`

Once you push it, your website should have a 'dark' skin with little loss of the format:)

@anebz
Copy link

anebz commented Nov 16, 2018

Tried it, the skin is indeed dark but the sidebar is pushed all the way to the left and the navbar on top is slightly disfigured, @katsu1110 is this what you mean by little loss of the format? :) or is there something I'm missing?

Edit: I found the official configuration page where it says the only necessary thing to do is add:

minimal_mistakes_skin: "dark"

but it's not working for me.

@katsu1110
Copy link
Author

@anebz Exactly, this is what I meant. For this academic pages, it seems that there are some unique changes in css from the original minimal_mistakes, which prevent us from changing the theme easily.

@nicklalone
Copy link

nicklalone commented Nov 17, 2018

It's a shame that your method of doing it seems to remove all iconography on the profile page. I wonder which asset specifically is blocking the theme content.

@anebz
Copy link

anebz commented Nov 17, 2018

Exactly, especially since it's supposed to be a simple one line addition, according to the documentation.

@eisenjulian
Copy link

Was anyone able to make this work?

@anebz
Copy link

anebz commented Mar 16, 2019

I wasn't :(

@datasumowrestler
Copy link

datasumowrestler commented Jul 20, 2019

Had the same problem. This worked for me:
https://github.com/mmistakes/minimal-mistakes/issues/1339

In _config.yml, add/ edit the following:
url: "https://vg.github.io"

@bensdm
Copy link

bensdm commented Jul 31, 2019

can you detail please?

@mrsandeshbhat
Copy link

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here

my _variables.scss file can be viewed here

anebz added a commit to anebz/anebz.github.io that referenced this issue Mar 5, 2020
@anebz
Copy link

anebz commented Mar 5, 2020

Thanks so much @mrsandeshbhat ! It worked 😎

@steipatr
Copy link

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here

my _variables.scss file can be viewed here

@mrsandeshbhat, Are any further changes needed to propagate these color value changes? I tried editing my _variables.scss but the website colors appear unchanged.

@anebz
Copy link

anebz commented May 28, 2020

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here
my _variables.scss file can be viewed here

@mrsandeshbhat, Are any further changes needed to propagate these color value changes? I tried editing my _variables.scss but the website colors appear unchanged.

@steipatr I tried doing these changes and it worked

@steipatr
Copy link

@anebz Thanks! I copied your the contents of your _variables.scss into mine, but nothing changed whatsoever. So bizarre. Are the skins you created also needed? That seems unintuitive, since they are not activated anywhere.

@anebz
Copy link

anebz commented May 31, 2020

@steipatr yeah the skins aren't referenced anywhere, I don't understand much CSS I just added the skins and it works for me. DId you manage to make it work without the skins?

@steipatr
Copy link

@anebz I'm a complete CSS noob. Couldn't get any color changes to work with the academicpages template. Trying minimal-mistakes now and it works as expected there, so trying to get a better understanding of how the different files work together in that.

@pritishmishra
Copy link

pritishmishra commented Jun 27, 2020

@steipatr Clone your repo to local. Remove Gemfile.lock file. Run the command bundle exec jekyll liveserve as given in Readme.
Push your changes to your github repo now.
Visit your webpage now and it should reflect the changes.

@eashanadhikarla
Copy link

I want to try out smaller fontsize for the entire website. I am not sure which one to edit. Can someone point me out the right place. Thanks!

@ryo-ARAKI
Copy link

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here
my _variables.scss file can be viewed here

@mrsandeshbhat, Are any further changes needed to propagate these color value changes? I tried editing my _variables.scss but the website colors appear unchanged.

I have been suffered by the exact same problem as @steipatr mentioned.
I did implement the changes @anebz shared with us and nothing happened on the local build & after git push ed to the remote server.
However, the next morning I found the dark theme is successfully applied.
I am completely new to CSS so have no idea what is going on in the background, but I would suggest you wait for a couple of days if you have experienced this kind of weird behavior.

@menisadi
Copy link

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here

my _variables.scss file can be viewed here

Tried and it worked! Thanks!
Only issue: the footer (with the copyright text) is still white for some reason. Any idea how to make it dark also?

@angadhn
Copy link

angadhn commented Oct 18, 2022

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here
my _variables.scss file can be viewed here

Tried and it worked! Thanks! Only issue: the footer (with the copyright text) is still white for some reason. Any idea how to make it dark also?

As was done in _variables.css, you need to go in and manually change this in _sass/footer.scss. My solution is here.

psanca27 pushed a commit to psancassani/psancassani.github.io that referenced this issue Nov 14, 2022
@g-h-chen
Copy link

g-h-chen commented Mar 5, 2023

plugins:

  • jekyll-remote-theme
    remote_theme : "mmistakes/minimal-mistakes"
    minimal_mistakes_skin : "dark" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"

This works for me! The thing is that you need to wait for 10~15 min before the server can sync all the changes (I guess).

@rjzupkoii rjzupkoii added this to the v0.9 milestone Feb 14, 2024
@inspirepassion
Copy link

inspirepassion commented Jul 7, 2024

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here

my _variables.scss file can be viewed here

I encountered the issue (as shown in the pic below) after I only changed the color values in _sass/ _variables.scss to my liking theme skin. The background color for the heading part is supposed to be the same as the background_color, however, it's always white. After some digging, I realized the masthead element of the webpage had fixed the color to white. If you encounter the same situation, in order to change that, you can go to file _sass/_masthead.scss, find the below code, and change the background color variable from white to the value of $background-color

.masthead {
  position: fixed;
  //background: white;
  background: $background-color;
}
iShot_2024-07-07_03 30 28

@400Ping
Copy link

400Ping commented Aug 20, 2024

I was able to change the theme of my academic pages website using the color values listed in the _sass/skins/dark.scss file into the _variables.css file as can be seen here
my _variables.scss file can be viewed here

I encountered the issue (as shown in the pic below) after I only changed the color values in _sass/ _variables.scss to my liking theme skin. The background color for the heading part is supposed to be the same as the background_color, however, it's always white. After some digging, I realized the masthead element of the webpage had fixed the color to white. If you encounter the same situation, in order to change that, you can go to file _sass/_masthead.scss, find the below code, and change the background color variable from white to the value of $background-color

.masthead {
  position: fixed;
  //background: white;
  background: $background-color;
}
iShot_2024-07-07_03 30 28

From mobile, after clicking the follow button. The hover background is originally white, making it hard to read the text. As shown in the picture down below, by changing the code below can make the color as same as the background.
Screenshot 2024-08-22 at 12 19 24 AM

@SourojitGhosh
Copy link

I wanted to only edit the background color of the masthead (similar to this website) and thus added some background labels in the masthead.css file. But I cannot seem to get one part of the default background to go away. Anyone knows how to fix?
image

@rjzupkoii rjzupkoii removed the enhancement An enhancement. label Jan 31, 2025
rjzupkoii added a commit that referenced this issue Feb 1, 2025
@rjzupkoii rjzupkoii self-assigned this Feb 1, 2025
rjzupkoii added a commit that referenced this issue Feb 1, 2025
rjzupkoii added a commit that referenced this issue Feb 1, 2025
rjzupkoii added a commit that referenced this issue Feb 1, 2025
rjzupkoii added a commit that referenced this issue Feb 1, 2025
rjzupkoii added a commit that referenced this issue Feb 2, 2025
rjzupkoii added a commit that referenced this issue Feb 2, 2025
rjzupkoii added a commit that referenced this issue Feb 2, 2025
rjzupkoii added a commit that referenced this issue Feb 2, 2025
rjzupkoii added a commit that referenced this issue Feb 2, 2025
@rjzupkoii
Copy link
Collaborator

The _sass directory was reorganized and support for themes added. A dark mode theme has been added with v0.8.3 release, see the wiki for more details.

steshinoki added a commit to steshinoki/steshinoki.github.io that referenced this issue Feb 21, 2025
commit 4f527d6
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 15 13:09:56 2025 -0500

    Close academicpages#2841, with code from @gopisivakanth

commit 2ac9022
Merge: 660a578 e7b600b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 9 13:14:29 2025 -0500

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

commit 660a578
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 9 13:14:28 2025 -0500

    Exclude publications from category-list, close academicpages#2820

commit e7b600b
Merge: d04ee55 ef6c1ce
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Fri Feb 7 11:33:06 2025 -0500

    Merge pull request academicpages#2814 from librautoo/master

    update readme file

commit ef6c1ce
Author: librautoo <61204127+librautoo@users.noreply.github.com>
Date:   Wed Feb 5 14:33:40 2025 +0800

    update readme file

commit d04ee55
Merge: 7f94030 b7379ff
Author: rjzupkoii <rjzii@yahoo.com>
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 <by.yang@pitt.edu>
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 <rjzii@yahoo.com>
Date:   Sun Feb 2 15:47:48 2025 -0500

    Examples w/o bookmarks bar

commit c32e4b4
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 13:22:51 2025 -0500

    Alphabetize the order of hte settings

commit 78f3351
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 13:12:10 2025 -0500

    academicpages#851 add the theme previews

commit 4594e4b
Merge: 47b944e 0ccd873
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 12:56:42 2025 -0500

    Merge branch 'academicpages#137'

commit 0ccd873
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Sat Feb 1 22:04:20 2025 -0500

    academicpages#137, academicpages#911 sync variables between themes

commit 75d868b
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Sat Feb 1 21:19:36 2025 -0500

    Address issues with order

commit 077a671
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:13:54 2025 -0500

    academicpages#137 update to include theme as setting

commit e9ff0d0
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:11:09 2025 -0500

    academicpages#137 pull default theme into new directory

commit efa7892
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:07:40 2025 -0500

    Remove variables reference

commit d27ccb0
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:56:39 2025 -0500

    academicpages#137 consolidate into _themes.scss

commit e9b3774
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:44:16 2025 -0500

    Update organization of _sass

commit 122bd14
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:32:41 2025 -0500

    Update location for the layout

commit 22397f7
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:17:26 2025 -0500

    academicpages#137 correct the variable name

commit da4b443
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:07:35 2025 -0500

    Consolidate animations

commit e2b4ca2
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:04:49 2025 -0500

    Modernize syntax

commit 57346e4
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 15:19:10 2025 -0500

    Update order of color codes

commit a514a05
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 15:04:22 2025 -0500

    academicpages#137 updates for links

commit 8b4b631
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:57:57 2025 -0500

    academicpages#137 update base colors

commit a4acfd9
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:43:39 2025 -0500

    academicpages#137 update code

commit aaf064b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:36:54 2025 -0500

    academicpages#137 updated border-color

commit 438e61c
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:28:48 2025 -0500

    academicpages#137  start progress on themes

commit 47b944e
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:24:45 2025 -0500

    Update README.md

commit 509397d
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:24:14 2025 -0500

    Update README.md

commit 3f946c5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:23:57 2025 -0500

    Update README.md

commit 1ebab2b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:09:02 2025 -0500

    Add GA updates to documentation, Close academicpages#265

commit 460ac0c
Merge: e53c946 b9e4c76
Author: rjzupkoii <rjzii@yahoo.com>
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 <hari64boli64@gmail.com>
Date:   Sat Feb 1 20:54:02 2025 +0900

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

commit 71780d5
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:49:28 2025 +0900

    Adjust right-sidebar width to fix the spacing problem

commit bc79d8a
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:29:00 2025 +0900

    Fix the clock icons by fa-clock

commit 95e60fa
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:26:46 2025 +0900

    Fix link in talkmap.html

commit 837e279
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:25:00 2025 +0900

    Fix typos of GitHub

commit e53c946
Merge: d021750 cd9f918
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Fri Jan 31 21:46:22 2025 -0500

    academicpages#2792 fix bad path

commit cd9f918
Author: Alessandro Aimi <alleaimi95@gmail.com>
Date:   Fri Jan 31 20:00:34 2025 +0100

    Fix running locally with Docker

commit 1acca92
Merge: 15c16b8 26c37c5
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Sun Dec 29 19:17:06 2024 -0500

    Update _config.yml

    Keep talkmap_link false by default

commit 7be61a3
Author: Dimitra Maoutsa <maoutsa.d@hotmail.gr>
Date:   Sun Dec 29 21:37:12 2024 +0100

    Update _config.yml

commit a9501b9
Author: Dimitra Maoutsa <maoutsa.d@hotmail.gr>
Date:   Sun Dec 29 21:36:39 2024 +0100

    Create scrape_talks.yml

commit 15c16b8
Merge: be55d03 1ca871f
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
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 <jacobalthompson@gmail.com>
Date:   Fri Dec 27 16:19:28 2024 -0800

    replace Twitter share button with X share button

commit cfb4d8a
Author: Jacob Thompson <jacobalthompson@gmail.com>
Date:   Fri Dec 27 12:42:31 2024 -0800

    fix Sitemap grammatical error

commit 77b7368
Merge: e2a7acf a290b4d
Author: rjzupkoii <rjzii@yahoo.com>
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 <fahimbinamin@gmail.com>
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 <rjzii@yahoo.com>
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 <fahimbinamin@gmail.com>
Date:   Tue Dec 17 00:02:14 2024 +0600

    add: docker command related instructions for Windows users

commit 4b94adc
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Dec 15 15:46:51 2024 -0500

    Close academicpages#2637 toggle the wrapper on resize

commit a932981
Merge: fb54e7a 77b1d9d
Author: rjzupkoii <rjzii@yahoo.com>
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 <oikos99@users.noreply.github.com>
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 <oikos99@users.noreply.github.com>
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 <rjzii@yahoo.com>
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 <tomrannosaurus@me.com>
Date:   Sat Nov 30 17:09:37 2024 -0500

    Update _config.yml

    added   - jekyll-redirect-from to plugins and whitelist

commit c0249a2
Author: tomrannosaurus <tomrannosaurus@me.com>
Date:   Sat Nov 30 17:06:08 2024 -0500

    Update Gemfile

    add   gem 'jekyll-redirect-from'

commit 79f5f6f
Merge: 04d9b5f 0f00a7a
Author: rjzupkoii <rjzii@yahoo.com>
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 <thechromecamera@gmail.com>
Date:   Sat Nov 23 14:50:50 2024 -0600

    fix: typo

commit 04d9b5f
Merge: e9f9c45 2eea7b8
Author: rjzupkoii <rjzii@yahoo.com>
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 <2541826291@qq.com>
Date:   Mon Nov 18 00:05:31 2024 +0800

    Fix typo in Zhihu URL protocol in

commit e9f9c45
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Nov 11 10:26:35 2024 -0500

    academicpages#2591 clarify URL in config

commit d810cdf
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:46:53 2024 -0400

    Additional pointers for help

commit f53c209
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:40:15 2024 -0400

    Update README with example

commit 61109fe
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:36:05 2024 -0400

    Close academicpages#2493 Update for Bing crawler

commit df10002
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:33:02 2024 -0400

    Adjustments to the about

commit 77e6eb4
Merge: 8d09856 31ae7dc
Author: rjzupkoii <rjzii@yahoo.com>
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 <dom.tortorella@gmail.com>
Date:   Sun Oct 27 19:43:00 2024 +0100

    Add `scopus` in academic websites

commit 8d09856
Merge: a1a88b6 d23a5e9
Author: rjzupkoii <rjzii@yahoo.com>
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 <32179312+opasche@users.noreply.github.com>
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 <rjzii@yahoo.com>
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 <60870971+zoelesv@users.noreply.github.com>
Date:   Tue Oct 1 21:25:21 2024 -0700

    Update Dockerfile

commit 9ec003f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:23:37 2024 -0400

    academicpages#1093 MV notebook to generator directory

commit 392368c
Merge: b90e6a3 b9a77f9
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:21:55 2024 -0400

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

commit b90e6a3
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
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 <xbz5174@psu.edu>
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 <rjzii@yahoo.com>
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 <neocarlitos@gmail.com>
Date:   Mon Sep 23 22:29:09 2024 +0200

    Add notebook to fetch publication information from orcid

commit d8c7955
Merge: 05d1019 3f6ba41
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
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 <Samir-Rashid@godsped.com>
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 <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 17:09:52 2024 +0000

    Reduce excessive footer padding

commit a543542
Author: Samir Rashid <Samir-Rashid@godsped.com>
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 <rjzii@yahoo.com>
Date:   Tue Sep 17 22:02:27 2024 -0400

    academicpages#828 adjustments to account for GitHub Pages limitations

commit 50001df
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 21:33:36 2024 -0400

    academicpages#828 different format string

commit 3ddeda5
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Tue Sep 17 20:57:33 2024 -0400

    Minor formatting

commit 1dcebd1
Merge: 66e2f20 7aa6181
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 20:53:51 2024 -0400

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

commit 66e2f20
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
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 <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 00:26:45 2024 +0000

    bug: comments appear at bottom of page

commit ef518d5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 19:56:47 2024 -0400

    Update README.md

commit 9639cbc
Merge: 0d4e024 40e3c2b
Author: rjzupkoii <rjzii@yahoo.com>
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 <abcsds@gmail.com>
Date:   Tue Sep 17 12:30:07 2024 -0600

    Add a dockerfile

commit 0d4e024
Author: rjzupkoii <rjzii@yahoo.com>
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 <rjzii@yahoo.com>
Date:   Sun Sep 15 13:51:39 2024 -0400

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

commit a683245
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:39:05 2024 -0400

    academicpages#1975 update smooth scroll to NPM

commit cd15f4a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:32:48 2024 -0400

    academicpages#1975 update magnific-popup to NPM

commit 9706914
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:20:53 2024 -0400

    academicpages#1975 update fitvids to NPM

commit 6c98d76
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 12:33:57 2024 -0400

    academicpages#1975 cleaning up the gem files a bit

commit 95118f6
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:56:50 2024 -0400

    Update README.md

commit 2fe408f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:56:02 2024 -0400

    Update README.md

commit 4b8421f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:52:23 2024 -0400

    Update README.md

commit ade2768
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:49:11 2024 -0400

    Update README.md

commit 4189d06
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:47:56 2024 -0400

    Update README.md

commit e63ceb1
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:47:40 2024 -0400

    Update README.md

commit 3af723c
Merge: 6d5d9a7 803166b
Author: rjzupkoii <rjzii@yahoo.com>
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 <90706749+edbrito-swdev@users.noreply.github.com>
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 <rjzii@yahoo.com>
Date:   Tue Sep 10 20:03:23 2024 -0400

    Update README.md

commit 823648a
Merge: 4097d7e 0c49f64
Author: rjzupkoii <rjzii@yahoo.com>
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 <90331527+02hyc@users.noreply.github.com>
Date:   Thu Aug 29 11:36:06 2024 +0800

    fix: lastfm url

commit 4097d7e
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 17:23:09 2024 -0400

    Closes academicpages#48 with a more general and customizable approach

commit aff2053
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 14:46:19 2024 -0400

    Alphabetize the excludes

commit 90d592a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 13:51:37 2024 -0400

    academicpages#2318 updating documentation a bit

commit 09e3161
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Thu Aug 8 22:16:08 2024 -0400

    academicpages#2316 update padding

commit a5ede61
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Jun 16 10:31:17 2024 -0400

    Update README.md

commit 23c37c2
Merge: 5dee723 08ffadc
Author: rjzupkoii <rjzii@yahoo.com>
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 <zarelavp@yahoo.com>
Date:   Sat Jun 15 23:58:55 2024 -0400

    Adds commands for MacOS
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

No branches or pull requests