Minimal-mistakes: Page title leaking to home index.html

Created on 21 Jan 2020  路  12Comments  路  Source: mmistakes/minimal-mistakes

Environment

  • Minimal Mistakes version: Using minimal-mistakes-jekyll 4.17.2
  • Ruby gem or remote theme version: 2.7.6.2
  • Jekyll version: 4.0.0
  • Git repository URL:
  • GitHub Pages hosted (if yes provide URL to site):
  • Operating system: Linux 4.19.0-6-amd64 x86_64

Expected behavior

I expect the main website title to be that in title: in _config.yml.

Instead I'm getting "The three values of entrepreneurship -" in front of the that title: in the html.<br /> <!--<br /> What is it you expected to happen? This should be a description of how the<br /> functionality you tried to use is supposed to work.<br /> --></p> <h2>Steps to reproduce the behavior</h2> <p>I'm not sure, but in _pages I have a bunch of html files, one of them called first.html with this front matter: </p> <hr /> <p>layout: single<br /> title: The three values of entrepreneurship</p> <h2>permalink: "three-values-of-entrepreneurship"</h2> <p>and the issue is "The three values of entrepreneurship" is the prefix HTML <title> on the front page of this website now. That first.html is not referenced anywhere else, it was just a draft page. </p> <!-- Describe the steps you took for this problem to exist. Such as: you installed the theme, customized _config.yml, added your own posts, and started up a Jekyll server locally. If an error occurred on GitHub Pages when pushing, please test a local version following these setup instructions: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/ Then provide a complete log by running `bundle exec jekyll build --trace --verbose` and include this output in the filed issue. Screenshots can also be included if they help illustrate a behavior. --> <p>copied a pile of *.html draft files into _pages, but they are not referenced in navigation.yml or elsewhere</p> <h2>Other</h2> <p><!--<br /> NOTE: Please provide a code repository, gist, code snippet, sample files,<br /> screenshots, or anything else you think will aid in reproducing the issue.<br /> --></p> </div> <div> <span class="badge badge-primary">Bug</span> <span class="badge badge-primary">Support</span> <span class="badge badge-primary">Upstream</span> <div class="float-right"> <a class="text-muted" href="https://www.github.com/mmistakes/minimal-mistakes/issues/2379" rel="nofollow noreferrer" target="_blank" onclick="dataLayer.push({'event': 'GAEvent', 'eventCategory': 'click', 'eventAction': 'source_bottom', 'eventLabel': 'Source Bottom', 'eventValue': undefined});">Source</a> </div> </div> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/16601027?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt=" picture"> <strong>improvethings</strong> </div> <div class="col text-right"> </div> </div> </div> </div> </div> <div class="col-12"> <div id="ph-above-best-comment"> </div> </div> <div class="col-12 mb-4 best-comment"> <div> <h2 class="mb-3"><i class="fas fa-check mr-2"></i>Most helpful comment</h2> </div> <div class="card card-custom border-lg-success mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Looks like it's a Jekyll 4.0 issue... or a 4.0 issue combined with one the Jekyll plugins like include-cache.<br /> If you downgrade to 3.8.6 the site builds as it should.</p> <p>Seeing how most users of this theme host on GitHub Pages and that's locked at 3.8 that would explain why the issue has gone unnoticed.</p> <p>Change your <code>Gemfile</code> to:</p> <pre><code class="prettyprint">source "https://rubygems.org" gem "jekyll", "~> 3.8.6" gem "minimal-mistakes-jekyll" gem "jekyll-redirect-from" </code></pre> <p>Run <code>bundle update</code></p> <p>And you should have no problems building your site.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt=" picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> 👍<span class="ml-2 mr-3">2</span> </div> </div> </div> </div> </div> <div class="col-12"> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="9295564578" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="col-12 d-flex align-items-center mb-4"> <h2>All 12 comments</h2> </div> <div class="col-12"> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Need to see your config and content to troubleshoot. I鈥檓 guessing one of your HTML files is the culprit. </p> <p>Please share a link to a public repo. </p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 21 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>I don't have it as a public repo, but you should be able to replicate. Create a first.html file in _pages (it doesn't start with the traditional date string like most page files, it was taken from a Wordpress export of draft pages): </p> <h2>It has this frontmatter: </h2> <p>layout: single<br /> title: The three values of entrepreneurship</p> <h2>permalink: "three-values-of-entrepreneurship"</h2> <p>When I deleted the first.html in question, it's now using the <title>: from the third last page by date which is 2020-01-18-tags.md</p> <h2>which has a front matter of </h2> <p>title: "Posts by Tag"<br /> layout: tags<br /> permalink: /tags/</p> <h2>author_profile: true</h2> <p>It's unusual to me it appears to be using a prefix from a _pages/* file on the main index.html which is a list of _posts. </p> <p>As an aside, thanks for this amazing theme! I was just about to add a search feature manually, and then realized I could just uncomment it in _config.yml -- magical. </p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/16601027?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="improvethings picture"> <strong>improvethings</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Sorry can鈥檛 reproduce it. Any file you have in a _pages folder isn鈥檛 a post so it won鈥檛 show up any of the post related archive pages e.g. tags, categories, posts by year, etc.</p> <p>Sounds to me like one of your posts has some goofy YAML or maybe even you have some with the same permalink. Without seeing your actual files I can鈥檛 say. </p> <p>I鈥檝e definitely see weird stuff in content that does stuff like this. And it can be hard to catch if you don鈥檛 know what your looking for.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>I've given you access to the private repository if you'll find it useful to debug for other users. It's not a big issue as it's just the HTML title tag, so this is a low priority bug and more of an FYI.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/16601027?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="improvethings picture"> <strong>improvethings</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>There's something screwy for sure. If you delete the <code>_posts</code> and <code>_pages</code> folders and files and build, your homepage still has the "The three values of..." <code><title></code> which is absolutely not correct.</p> <p>Trying to figure out where it's getting that from...</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3731713875" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>I can't locate the bad file, but you have one somewhere buried.<br /> To start you can remove a bunch of stuff since you're using the theme gem</p> <ol> <li>Remove the folders and files in <code>_layouts</code>, <code>_includes</code>, <code>_sass</code></li> <li>Then remove everything in <code>assets</code> except your images</li> <li>Move your <code>_posts</code> and <code>_pages</code> folders out of the repo temporarily.</li> <li>Build. You should see a title of <code>Kris Constable's digital log</code> on the home page</li> </ol> <p>Once that is working start moving your <code>_posts</code> and <code>_pages</code> gradually back until you determine what file is causing the issue. I'm not entirely sure it is even in one of those folders. As I originally removed all your content and it still had the leaky title on the homepage.</p> <p>Which leads me to believe there's a file with YAML front matter in it, that's buried in another Jekyll folder that get's processed and messes something up on the homepage.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Hi, I think I may take a look at this. Would you mind sharing necessary information so I can reproduce it?</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/7273074?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="iBug picture"> <strong>iBug</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Further testing, doesn't appear to be your content, configuration, or the theme.</p> <p>I'm not sure what plugin is the culprit but it appears to be one of the Jekyll ones. I tried disabling all plugins, but because the theme gem has a few marked as dependencies they get installed anyways.</p> <p>Now, if I removed the theme gem from <code>Gemfile</code> installed it as a remote theme, the site builds as it should without the leaky <code><title></code>. Some plugin is grabbing hold of whatever the most recent post/page is and then jams that into the site title on <code>index.html</code>. This doesn't happen when using the remote theme as you're able to turn off all the plugins.</p> <p>Now to find out what plugin is the problem.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Looks like it's a Jekyll 4.0 issue... or a 4.0 issue combined with one the Jekyll plugins like include-cache.<br /> If you downgrade to 3.8.6 the site builds as it should.</p> <p>Seeing how most users of this theme host on GitHub Pages and that's locked at 3.8 that would explain why the issue has gone unnoticed.</p> <p>Change your <code>Gemfile</code> to:</p> <pre><code class="prettyprint">source "https://rubygems.org" gem "jekyll", "~> 3.8.6" gem "minimal-mistakes-jekyll" gem "jekyll-redirect-from" </code></pre> <p>Run <code>bundle update</code></p> <p>And you should have no problems building your site.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> 👍<span class="ml-2 mr-3">2</span> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Seems related to this issue <a rel="nofollow noopener" target="_blank" href="https://github.com/jekyll/jekyll/issues/7811">https://github.com/jekyll/jekyll/issues/7811</a></p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/1376749?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mmistakes picture"> <strong>mmistakes</strong> <span class="text-muted ml-1">on 24 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>This resolved the issue, thanks for taking the time!</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/16601027?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="improvethings picture"> <strong>improvethings</strong> <span class="text-muted ml-1">on 27 Jan 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p><strong>@mmistakes</strong> Maybe it's time to unpin this issue. <a rel="nofollow noopener" target="_blank" href="https://jekyllrb.com/news/2020/05/08/jekyll-4-0-1-released/">Jekyll 4.0.1 is out</a> and the specific cause has been fixed (as you linked, jekyll/jekyll#7811).</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/7273074?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="iBug picture"> <strong>iBug</strong> <span class="text-muted ml-1">on 12 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> </div> <div class="col-12"> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown text-center helpful"> <div class="title">Was this page helpful?</div> <div class="mt-1" onMouseLeave="rating(553147470, 0);"> <i class="fas fa-star inactive" id="star-1" onMouseOver="rating(553147470, 1);" onclick="rate(553147470, 1);"></i> <i class="fas fa-star inactive" id="star-2" onMouseOver="rating(553147470, 2);" onclick="rate(553147470, 2);"></i> <i class="fas fa-star inactive" id="star-3" onMouseOver="rating(553147470, 3);" onclick="rate(553147470, 3);"></i> <i class="fas fa-star inactive" id="star-4" onMouseOver="rating(553147470, 4);" onclick="rate(553147470, 4);"></i> <i class="fas fa-star inactive" id="star-5" onMouseOver="rating(553147470, 5);" onclick="rate(553147470, 5);"></i> </div> <div class="description text-small"><span id="rating-val">0</span> / 5 - <span id="rating-count">0</span> ratings</div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3452512275" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> </div> <div class="col-12 col-lg-4"> <div id="ph-above-related"></div> <div class="card card-custom issue-box"> <div class="card-body pt-3 pb-5"> <h2 class="mb-4">Related issues</h2> <div> <strong> <a href="/minimal-mistakes/596384644/follow-menu-falls-under-post-links">Follow menu falls under post links</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars0.githubusercontent.com/u/1054134?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="KiarashS picture"> <strong class="pr-1" dir="ltr">KiarashS</strong>  路  <span class="px-1" dir="ltr">4</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/minimal-mistakes/277892784/help-with-getting-wider-post-content">Help with getting wider post content</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars2.githubusercontent.com/u/33520434?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="m1evankaiser picture"> <strong class="pr-1" dir="ltr">m1evankaiser</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/minimal-mistakes/150601267/it-would-be-nice-if-it-works-after-download">It would be nice if it works after download</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars2.githubusercontent.com/u/300046?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="wilsonmar picture"> <strong class="pr-1" dir="ltr">wilsonmar</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/minimal-mistakes/232792843/reduce-posts-font-size-using-variables-scss">Reduce posts font size using _variables.scss</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars1.githubusercontent.com/u/20846187?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="z0ph picture"> <strong class="pr-1" dir="ltr">z0ph</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/minimal-mistakes/198481679/could-not-find-gem-bundler-1-12-in-any-of-the-sources">Could not find gem 'bundler (~> 1.12)' in any of the sources</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars3.githubusercontent.com/u/7949357?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="lgyjg picture"> <strong class="pr-1" dir="ltr">lgyjg</strong>  路  <span class="px-1" dir="ltr">5</span><span>Comments</span> </div> </div> </div> <div class="sticky-top pt-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3919948963" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div id="ph-below-related-2" class="mt-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3919948963" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <div class="col-12 col-lg-4"> </div> </div> <div class="skyscraper-container"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="7879185320" data-ad-format="vertical" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="mt-5 spacer"></div> <footer class="mt-5 pb-2 py-4 text-center mt-auto"> <div class="container"> <a class="navbar-brand logo mr-5" href="/"> <img src="/assets/img/logo.svg" width="40" height="40" alt="bleepingcoder logo"> bleeping<strong>coder</strong> </a> <div class="mt-4"> bleepingcoder.com uses publicly licensed GitHub information to provide developers around the world with solutions to their problems. We are not affiliated with GitHub, Inc. or with any developers who use GitHub for their projects. We do not host any of the videos or images on our servers. All rights belong to their respective owners. </div> <div> Source for this page: <a href="https://www.github.com/mmistakes/minimal-mistakes/issues/2379" rel="nofollow noreferrer" target="_blank">Source</a> </div> </div> <hr class="mb-5 mt-5"> <div class="container"> <div class="row"> <div class="col-sm-4 col-lg mb-sm-0 mb-5"> <strong>Popular programming languages</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/python" dir="ltr">Python</a> </li> <li class="mb-2"> <a href="/javascript" dir="ltr">JavaScript</a> </li> <li class="mb-2"> <a href="/typescript" dir="ltr">TypeScript</a> </li> <li class="mb-2"> <a href="/cpp" dir="ltr">C++</a> </li> <li class="mb-2"> <a href="/csharp" dir="ltr">C#</a> </li> </ul> </div> <div class="col-sm-4 col-lg mb-sm-0 mb-5"> <strong>Popular GitHub projects</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/microsoft/vscode" dir="ltr">vscode</a> </li> <li class="mb-2"> <a href="/numpy/numpy" dir="ltr">numpy</a> </li> <li class="mb-2"> <a href="/ant-design/ant-design" dir="ltr">ant-design</a> </li> <li class="mb-2"> <a href="/mui-org/material-ui" dir="ltr">material-ui</a> </li> <li class="mb-2"> <a href="/vercel/next-js" dir="ltr">next.js</a> </li> </ul> </div> <div class="col-sm-4 col-lg mb-0"> <strong>More GitHub projects</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/rust-lang/rust" dir="ltr">rust</a> </li> <li class="mb-2"> <a href="/moment/moment" dir="ltr">moment</a> </li> <li class="mb-2"> <a href="/yarnpkg/yarn" dir="ltr">yarn</a> </li> <li class="mb-2"> <a href="/mozilla/pdf-js" dir="ltr">pdf.js</a> </li> <li class="mb-2"> <a href="/JuliaLang/julia" dir="ltr">julia</a> </li> </ul> </div> </div> </div> <hr class="mb-5 mt-5"> <div class="container text-muted"> 漏 2026 bleepingcoder.com - <a href="/bleeps" rel="nofollow">Contact</a><br /> By using our site, you acknowledge that you have read and understand our <a href="/cookies" rel="nofollow">Cookie Policy</a> and <a href="/privacy" rel="nofollow">Privacy Policy</a>. </div> </footer> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script> <script async src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <!--<script defer type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5fb2db66acbd74b2"></script>--> <script type="text/javascript" src="/assets/js/main.js"></script> <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script></body> </html>