|
2 | 2 | <html> |
3 | 3 | <head> |
4 | 4 | <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> |
6 | 12 | <!-- Include Plotly.js from CDN --> |
7 | 13 | <script src="https://cdn.plot.ly/plotly-latest.min.js"></script> |
8 | 14 | <!-- Include Math.js library for mathematical computations --> |
|
33 | 39 | font-weight: bold; |
34 | 40 | } |
35 | 41 | </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: '' }}®ister={{ 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 | + |
36 | 88 | </head> |
37 | 89 | <body> |
38 | 90 |
|
|
0 commit comments