Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanhe42 committed Feb 9, 2022
0 parents commit a1706a8
Show file tree
Hide file tree
Showing 5 changed files with 772 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
remote_theme: pages-themes/[email protected]
plugins:
- jekyll-remote-theme # add this line to the plugins list if you already have one
13 changes: 13 additions & 0 deletions _includes/head-custom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->

<!-- Setup Google Analytics -->
{% include head-custom-google-analytics.html %}

<!-- You can set your favicon here -->
<!-- link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}" -->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4253216309174736"
crossorigin="anonymous"
></script>
<!-- end custom head snippets -->
102 changes: 102 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!doctype html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

{% seo %}
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script>
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">

{% include head-custom.html %}
</head>
<body>

<header>
<h1>{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
<p>{{ page.description | default: site.description | default: site.github.project_tagline }}</p>
</header>

<div id="banner">
<span id="logo"></span>

<a href="{{ site.github.repository_url }}" class="button fork"><strong>View On GitHub</strong></a>
{% if site.show_downloads %}
<div class="downloads">
<span>Downloads:</span>
<ul>
<li><a href="{{ site.github.zip_url }}" class="button">ZIP</a></li>
<li><a href="{{ site.github.tar_url }}" class="button">TAR</a></li>
</ul>
</div>
{% endif %}
</div><!-- end banner -->

<div class="wrapper">
<nav>
<ul></ul>
</nav>
<div class="aboutme">
<!-- <ul> -->
Yihui He<br>
<a target="_blank" href="https://yihui-he.github.io/">yihui-he.github.io</a><br>
<a target="_blank" href="https://twitter.com/he_yi_hui"
>twitter@he_yi_hui</a
><br>
<a
target="_blank"
href="https://www.youtube.com/channel/UCuxl5K1MSj1TTtAsNmlONcg"
>YouTube</a
><br>
<a target="_blank" href="https://github.com/yihui-he"
>GitHub (2k followers)</a
><br>
<a target="_blank" href="https://www.zhihu.com/people/rex686568"
>知乎@何宜晖 (8k 关注)</a
><br>
<!-- </ul> -->
</div>
<section>
{{ content }}

</section>
<footer>
{% if site.github.is_project_page %}
<p>
<!-- Yihui He
<br>
<a target="_blank" href="https://yihui-he.github.io/">yihui-he.github.io</a>
<br>
<a target="_blank" href="https://twitter.com/he_yi_hui"
>twitter@he_yi_hui</a
>
<br>
<a
target="_blank"
href="https://www.youtube.com/channel/UCuxl5K1MSj1TTtAsNmlONcg"
>YouTube</a
>
<br>
<a target="_blank" href="https://github.com/yihui-he"
>GitHub (2k followers)</a
>
<br>
<a target="_blank" href="https://www.zhihu.com/people/rex686568"
>知乎 (8k 关注)</a
>
<br>
<br>
<br>
<br> -->
</p>
{% endif %}
<p></p>
</footer>
</div>
</body>
</html>
Loading

0 comments on commit a1706a8

Please sign in to comment.