Skip to content

Commit 927d725

Browse files
authored
Merge pull request #3339 from thiswillbeyourgithub/fix-http-to-https
fix: use https instead of http
2 parents 2022adb + 10b390e commit 927d725

14 files changed

+33
-33
lines changed

_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ author:
3838
googlescholar : "https://scholar.google.com/citations?user=PS_CX0AAAAAJ"
3939
inspire-hep : # URL
4040
impactstory : # URL
41-
orcid : "http://orcid.org/yourorcidurl"
41+
orcid : "https://orcid.org/yourorcidurl"
4242
semantic : # URL
4343
pubmed : "https://www.ncbi.nlm.nih.gov/pubmed/?term=john+snow"
4444
researchgate : # URL
@@ -292,14 +292,14 @@ defaults:
292292
# Sass/SCSS
293293
sass:
294294
sass_dir: _sass
295-
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
295+
style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
296296

297297

298298
# Outputting
299299
permalink: /:categories/:title/
300300
# paginate: 5 # amount of posts to show
301301
# paginate_path: /page:num/
302-
timezone: Etc/UTC # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
302+
timezone: Etc/UTC # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
303303

304304

305305
# Plugins
@@ -351,7 +351,7 @@ tag_archive:
351351

352352

353353
# HTML Compression
354-
# - http://jch.penibelst.de/
354+
# - https://jch.penibelst.de/
355355
compress_html:
356356
clippings: all
357357
ignore:

_data/authors.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Name Name:
44
name : "Name Name"
5-
uri : "http://name.com"
5+
uri : "https://name.com"
66
77
bio : "This is the first name."
88
avatar : "bio-photo-2.jpg"
@@ -15,4 +15,4 @@ Name2 Name2:
1515
bio : "I ordered what?"
1616
avatar : "bio-photo.jpg"
1717
twitter : "name2"
18-
google_plus : "Name"
18+
google_plus : "Name"

_data/cv.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{
2222
"network": "ORCID",
2323
"username": "",
24-
"url": "http://orcid.org/yourorcidurl"
24+
"url": "https://orcid.org/yourorcidurl"
2525
},
2626
{
2727
"network": "GitHub",
@@ -69,28 +69,28 @@
6969
"name": "Paper Title Number 1",
7070
"publisher": "Journal 1",
7171
"releaseDate": "2009-10-01",
72-
"website": "http://academicpages.github.io/files/paper1.pdf",
72+
"website": "https://academicpages.github.io/files/paper1.pdf",
7373
"summary": "This paper is about the number 1. The number 2 is left for future work."
7474
},
7575
{
7676
"name": "Paper Title Number 2",
7777
"publisher": "Journal 1",
7878
"releaseDate": "2010-10-01",
79-
"website": "http://academicpages.github.io/files/paper2.pdf",
79+
"website": "https://academicpages.github.io/files/paper2.pdf",
8080
"summary": "This paper is about the number 2. The number 3 is left for future work."
8181
},
8282
{
8383
"name": "Paper Title Number 3",
8484
"publisher": "Journal 1",
8585
"releaseDate": "2015-10-01",
86-
"website": "http://academicpages.github.io/files/paper3.pdf",
86+
"website": "https://academicpages.github.io/files/paper3.pdf",
8787
"summary": "This paper is about the number 3. The number 4 is left for future work."
8888
},
8989
{
9090
"name": "Paper Title Number 4",
9191
"publisher": "GitHub Journal of Bugs",
9292
"releaseDate": "2024-02-17",
93-
"website": "http://academicpages.github.io/files/paper3.pdf",
93+
"website": "https://academicpages.github.io/files/paper3.pdf",
9494
"summary": "This paper is about fixing template issue #693."
9595
}
9696
],
@@ -149,4 +149,4 @@
149149
"description": "Short description of portfolio item number 1<br/><img src='/images/500x300.png'>"
150150
}
151151
]
152-
}
152+
}

_includes/footer.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
88
{% endif %}
99
{% if site.author.github %}
10-
<li><a href="http://github.com/{{ site.author.github }}"><i class="fab fa-github" aria-hidden="true"></i> GitHub</a></li>
10+
<li><a href="https://github.com/{{ site.author.github }}"><i class="fab fa-github" aria-hidden="true"></i> GitHub</a></li>
1111
{% endif %}
1212
{% if site.author.bitbucket %}
13-
<li><a href="http://bitbucket.org/{{ site.author.bitbucket }}"><i class="fab fa-bitbucket" aria-hidden="true"></i> Bitbucket</a></li>
13+
<li><a href="https://bitbucket.org/{{ site.author.bitbucket }}"><i class="fab fa-bitbucket" aria-hidden="true"></i> Bitbucket</a></li>
1414
{% endif %}
1515
{% if site.atom_feed.hide != true %}
1616
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ base_path }}/feed.xml{% endif %}"><i class="fa fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
@@ -20,6 +20,6 @@
2020
{% endif %}
2121

2222
<div class="page__footer-copyright">
23-
&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}, {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://github.com/academicpages/academicpages.github.io">AcademicPages</a>, a fork of <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.<br />
23+
&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}, {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://github.com/academicpages/academicpages.github.io">AcademicPages</a>, a fork of <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.<br />
2424
Site last updated {{ "now" | date: '%Y-%m-%d' }}
2525
</div>

_layouts/compress.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# Jekyll layout that compresses HTML
33
# v3.0.2
4-
# http://jch.penibelst.de/
4+
# https://jch.penibelst.de/
55
# © 2014–2015 Anatol Broder
66
# MIT License
77
---

_pages/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Getting started
2727
1. Register a GitHub account if you don't have one and confirm your e-mail (required!)
2828
1. Fork [this template](https://github.com/academicpages/academicpages.github.io) by clicking the "Use this template" button in the top right.
2929
1. Go to the repository's settings (rightmost item in the tabs that start with "Code", should be below "Unwatch"). Rename the repository "[your GitHub username].github.io", which will also be your website's URL.
30-
1. Set site-wide configuration and create content & metadata (see below -- also see [this set of diffs](http://archive.is/3TPas) showing what files were changed to set up [an example site](https://getorg-testacct.github.io) for a user with the username "getorg-testacct")
30+
1. Set site-wide configuration and create content & metadata (see below -- also see [this set of diffs](https://archive.is/3TPas) showing what files were changed to set up [an example site](https://getorg-testacct.github.io) for a user with the username "getorg-testacct")
3131
1. Upload any files (like PDFs, .zip files, etc.) to the files/ directory. They will appear at https://[your GitHub username].github.io/files/example.pdf.
3232
1. Check status by going to the repository settings, in the "GitHub pages" section
3333

_pages/archive-layout-with-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Make any link standout more when applying the `.btn` class.
105105

106106
### Anchor Tag (aka. Link)
107107

108-
This is an example of a [link](http://github.com "GitHub").
108+
This is an example of a [link](https://github.com "GitHub").
109109

110110
### Abbreviation Tag
111111

@@ -174,4 +174,4 @@ This allows you to denote <var>variables</var>.
174174
{% include base_path %}
175175
{% for post in site.pages %}
176176
{% include archive-single.html %}
177-
{% endfor %}
177+
{% endfor %}

_pages/markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ This is the regular text.[^1] This is more regular text.[^note]
345345

346346
### Anchor Tag (aka. Link)
347347

348-
This is an example of a [link](http://github.com "GitHub").
348+
This is an example of a [link](https://github.com "GitHub").
349349

350350
### Abbreviation Tag
351351

_pages/terms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ All of this information is not linked to anything that is personally identifiabl
2828

2929
### Cookies and Web Beacons
3030

31-
When you visit this site "convenience" cookies are stored on your computer when you submit a comment to help you log in faster to [Disqus](http://disqus.com) the next time you leave a comment.
31+
When you visit this site "convenience" cookies are stored on your computer when you submit a comment to help you log in faster to [Disqus](https://disqus.com) the next time you leave a comment.
3232

3333
Third-party advertisers may also place and read cookies on your browser and/or use web beacons to collect information. This site has no access or control over these cookies. You should review the respective privacy policies on any and all third-party ad servers for more information regarding their practices and how to opt-out.
3434

3535
If you wish to disable cookies, you may do so through your web browser options. Instructions for doing so can be found on the specific web browsers' websites.
3636

3737
#### Google Analytics
3838

39-
Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read [Google Analytics Privacy Policy](http://www.google.com/analytics/learn/privacy.html).
39+
Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read [Google Analytics Privacy Policy](https://www.google.com/analytics/learn/privacy.html).

_publications/2009-10-01-paper-title-number-1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ permalink: /publication/2009-10-01-paper-title-number-1
66
excerpt: 'This paper is about the number 1. The number 2 is left for future work.'
77
date: 2009-10-01
88
venue: 'Journal 1'
9-
slidesurl: 'http://academicpages.github.io/files/slides1.pdf'
10-
paperurl: 'http://academicpages.github.io/files/paper1.pdf'
11-
bibtexurl: 'http://academicpages.github.io/files/bibtex1.bib'
9+
slidesurl: 'https://academicpages.github.io/files/slides1.pdf'
10+
paperurl: 'https://academicpages.github.io/files/paper1.pdf'
11+
bibtexurl: 'https://academicpages.github.io/files/bibtex1.bib'
1212
citation: 'Your Name, You. (2009). &quot;Paper Title Number 1.&quot; <i>Journal 1</i>. 1(1).'
1313
---
1414
The contents above will be part of a list of publications, if the user clicks the link for the publication than the contents of section will be rendered as a full page, allowing you to provide more information about the paper for the reader. When publications are displayed as a single page, the contents of the above "citation" field will automatically be included below this section in a smaller font.

0 commit comments

Comments
 (0)