Skip to content

Commit

Permalink
Site updated: 2024-08-24 14:42:45
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwhy committed Aug 24, 2024
1 parent 7752f5c commit c344d2d
Show file tree
Hide file tree
Showing 32 changed files with 4,491 additions and 0 deletions.
219 changes: 219 additions & 0 deletions 2001/08/01/hello-world/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">

<title>Hello World | A Trivial Travelogue | Do not go gentle into that good night.</title>


<meta name="author" content="Akira">



<meta name="description" content="Do not go gentle into that good night.">




<meta name="keywords" content="">


<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">

<meta property="og:title" content="Hello World"/>

<meta property="og:site_name" content="A Trivial Travelogue"/>


<meta property="og:image" content="/favicon.ico"/>


<link href="/favicon.ico" rel="icon">
<link rel="alternate" href="/atom.xml" title="A Trivial Travelogue" type="application/atom+xml">
<link rel="stylesheet" href="/css/style.css" media="screen" type="text/css">

<link href="https://fonts.lug.ustc.edu.cn/css?family=Lato|Rubik" rel="stylesheet">
<script src="/js/pangu-407.min.js"></script>
<meta name="generator" content="Hexo 7.3.0"></head>
<script>
document.addEventListener('DOMContentLoaded', () => {
pangu.autoSpacingPage();
});
</script>


<body>
<div class="blog">
<div class="content">

<header>
<div class="site-branding">
<h1 class="site-title">
<a href="/">A Trivial Travelogue</a>
</h1>
<p class="site-description">Do not go gentle into that good night.</p>
</div>
<nav class="site-navigation">
<ul>

<li><a href="/archives">Archives</a></li>

<li><a href="/categories">Categories</a></li>

<li><a href="/about">About</a></li>

<li><a href="/atom.xml">RSS</a></li>

</ul>
</nav>
</header>

<main class="site-main posts-loop">
<article>



<h3 class="article-title"><span>Hello World</span></h3>



<div class="article-top-meta">
<span class="posted-on">
<a href="/2001/08/01/hello-world/" rel="bookmark">
<time class="entry-date published" datetime="2001-08-01T08:00:00.000Z">
2001-08-01
</time>
</a>
</span>
</div>




<div class="article-content">
<div class="entry">



<script type="text/javascript">
function convertRemToPixels(rem) {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
}
window.onscroll = function() {
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
if (scrollTop > convertRemToPixels(40)) {
document.getElementsByClassName('toc-article')[0].style.visibility = 'visible';
} else {
document.getElementsByClassName('toc-article')[0].style.visibility = 'hidden';
}
}
</script>


<div id="toc" class="toc-article">
<div class="toc-content">
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#Quick-Start"><span class="toc-text">Quick Start</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#Create-a-new-post"><span class="toc-text">Create a new post</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Run-server"><span class="toc-text">Run server</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Generate-static-files"><span class="toc-text">Generate static files</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Deploy-to-remote-sites"><span class="toc-text">Deploy to remote sites</span></a></li></ol></li></ol>
</div>
</div>
<style>
.toc-level-3 i,
.toc-level-3 ol {
display: none !important;
}
</style>



<p>Welcome to <a target="_blank" rel="noopener" href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a target="_blank" rel="noopener" href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a target="_blank" rel="noopener" href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a target="_blank" rel="noopener" href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p>
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">&quot;My New Post&quot;</span></span><br></pre></td></tr></table></figure>

<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/writing.html">Writing</a></p>
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>

<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/server.html">Server</a></p>
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>

<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/generating.html">Generating</a></p>
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>

<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>


</div>

</div>

<div class="article-footer">
<div class="article-meta pull-left">





</div>


</div>
</article>





<section id="comment" class="comment">
<div id="disqus_thread">
<noscript>Please enable JavaScript to view the <a target="_blank" rel="noopener" href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>

<script type="text/javascript">
var disqus_shortname = 'kidhaibara';
(function(){
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
(function(){
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>




</main>

<footer class="site-footer">
<p class="site-info">
Deployed by <a href="https://github.com/kaedea/notion-down" target="_blank">notion-down</a> and
Theme by <a href="https://github.com/kaedea/hexo-theme-hacker" target="_blank">hexo-theme-hacker</a>
</br>

&copy; 2024 Akira

</p>
</footer>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'G-J38N5N288S', 'auto');
ga('send', 'pageview');

</script>

</div>
</div>
</body>
</html>
Loading

0 comments on commit c344d2d

Please sign in to comment.