Skip to content

Commit 48e8d39

Browse files
committed
Update quantum-harmonic-oscillator.html
1 parent 6ceda41 commit 48e8d39

File tree

1 file changed

+53
-1
lines changed

1 file changed

+53
-1
lines changed

physics-visualization/quantum-harmonic-oscillator.html

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
<html>
33
<head>
44
<meta charset="UTF-8">
5-
<title>Quantum Harmonic Oscillator: Probability Density</title>
5+
6+
{%- capture seo_tags -%}
7+
{% seo title=false %}
8+
{%- endcapture -%}
9+
{{ seo_tags }}
10+
11+
<title>Quantum Harmonic Oscillator: Probability Density | by Yunseo Kim</title>
612
<!-- Include Plotly.js from CDN -->
713
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
814
<!-- Include Math.js library for mathematical computations -->
@@ -33,6 +39,52 @@
3339
font-weight: bold;
3440
}
3541
</style>
42+
43+
{% if jekyll.environment == 'production' %}
44+
<!-- PWA -->
45+
{% if site.pwa.enabled %}
46+
<script
47+
defer
48+
src="{{ '/app.min.js' | relative_url }}?baseurl={{ site.baseurl | default: '' }}&register={{ site.pwa.cache.enabled }}"
49+
></script>
50+
{% endif %}
51+
52+
<!-- Web Analytics -->
53+
{% for analytics in site.analytics %}
54+
{% capture str %}{{ analytics }}{% endcapture %}
55+
{% assign platform = str | split: '{' | first %}
56+
{% if site.analytics[platform].id and site.analytics[platform].id != empty %}
57+
{% include analytics/{{ platform }}.html %}
58+
{% endif %}
59+
{% endfor %}
60+
{% endif %}
61+
62+
{% include metadata-hook.html %}
63+
64+
<!-- Google tag (gtag.js) -->
65+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FBSWTJ27CE"></script>
66+
<script>
67+
window.dataLayer = window.dataLayer || [];
68+
function gtag(){dataLayer.push(arguments);}
69+
gtag('js', new Date());
70+
71+
gtag('config', 'G-FBSWTJ27CE');
72+
</script>
73+
74+
<!-- Google AdSense -->
75+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8691553075583022"
76+
crossorigin="anonymous">
77+
</script>
78+
79+
<!-- Clarity tracking code for https://www.yunseo.kim/ -->
80+
<script type="text/javascript">
81+
(function(c,l,a,r,i,t,y){
82+
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
83+
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
84+
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
85+
})(window, document, "clarity", "script", "nbxyh17xog");
86+
</script>
87+
3688
</head>
3789
<body>
3890

0 commit comments

Comments
 (0)