-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7522e70
Showing
5 changed files
with
737 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.