Skip to content

Commit

Permalink
initiall
Browse files Browse the repository at this point in the history
  • Loading branch information
griffinjmbur committed Feb 16, 2024
1 parent c74ca01 commit 47dea63
Show file tree
Hide file tree
Showing 6 changed files with 242 additions and 13 deletions.
Binary file added .DS_Store
Binary file not shown.
26 changes: 13 additions & 13 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

# Basic Site Settings
locale : "en-US"
title : "Your Name / Site Title"
title : "gjmb research"
title_separator : "-"
name : &name "Your Name"
description : &description "personal description"
url : https://academicpages.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
name : &name "Griffin Bur"
description : &description "PhD candidate in Sociology at UW-Madison"
url : griffinjmbur.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
baseurl : "" # the subpath of your site, e.g. "/blog"
repository : "academicpages/academicpages.github.io"

Expand All @@ -21,17 +21,17 @@ repository : "academicpages/academicpages.github.io"
author:
# Biographic information
avatar : "profile.png"
name : "Your Sidebar Name"
pronouns : # example: "she/her"
name : ""
pronouns : # example: "she/her"
bio : "Short biography for the left-hand sidebar"
location : "Earth"
employer : "Red Brick University"
location : "Madison, WI"
employer : ""
uri : # URL
email : "none@example.org"
email : "gjmbteaching@gmail.com"

# Academic websites
arxiv : # URL - Update with the correct link to your profile
googlescholar : "https://scholar.google.com/citations?user=PS_CX0AAAAAJ"
googlescholar : ""
impactstory : # URL
orcid : "http://orcid.org/yourorcidurl"
pubmed : "https://www.ncbi.nlm.nih.gov/pubmed/?term=john+snow"
Expand All @@ -42,11 +42,11 @@ author:
codepen : # Username
dribbble : # Username
github : "academicpages"
kaggle : # Username
stackoverflow : # User number or user number and name (i.e., use "1" or "1/jeff-atwood")
kaggle : # Username
stackoverflow : # User number or user number and name (i.e., use "1" or "1/jeff-atwood")

# Social media
bluesky : "bsky.app" # Replace this with you Bluesky username
bluesky : # Replace this with you Bluesky username
facebook : # Username
flickr : # Username
foursquare : # Username
Expand Down
24 changes: 24 additions & 0 deletions _includes/mathjax_support.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"] }
});


MathJax.Hub.Register.MessageHook("Math Processing Error",function (message) {
alert("Math Processing Error: "+message[1]);
});
MathJax.Hub.Register.MessageHook("TeX Jax - parse error",function (message) {
alert("Math Processing Error: "+message[1]);
});
</script>


<script type="text/javascript" async src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
Binary file added _layouts/.DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<head>
{% include head.html %}
{% include head/custom.html %}
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>

<body>
Expand All @@ -27,5 +29,8 @@

{% include scripts.html %}

{% if page.use_math %}
{% include mathjax_support.html %}
{% endif %}
</body>
</html>
Loading

0 comments on commit 47dea63

Please sign in to comment.