Skip to content

Commit

Permalink
Deploy BlueeeMoon/bluemoon to BlueeeMoon/bluemoon:blue-page
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Sep 12, 2024
0 parents commit 22f7a11
Show file tree
Hide file tree
Showing 89 changed files with 7,486 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
165 changes: 165 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
<title></title>

<!-- CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/[email protected]/index.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/[email protected]/index.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="https://blueeemoon.github.io/bluemoon/main.css">


<!-- JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>


<script src="https://blueeemoon.github.io/bluemoon/elasticlunr.min.js" defer></script>

<script src="https://blueeemoon.github.io/bluemoon/search_index.en.js" defer></script>






<!-- RSS -->


<link rel="alternate" type="application/rss+xml" title="RSS" href="https://blueeemoon.github.io/bluemoon/rss.xml">







</head>

<body>
<aside id="sidebar" class="menu is-hidden-touch">


<div style="display:block;margin:auto auto 0;padding:.5rem">
<figure class="image">
<img id="avatar" class="is-rounded" src="https://blueeemoon.github.io/bluemoon/media/avatar.png">
</figure>
</div>



<ul id="menu" class="menu-list">


<li data-menuanchor="about"><a href="https://blueeemoon.github.io/bluemoon/#anchor_about">ACERCA DE MI</a></li>


<li data-menuanchor="bitcoin"><a href="https://blueeemoon.github.io/bluemoon/#anchor_bitcoin">BITCOIN</a></li>


<li data-menuanchor="lightning"><a href="https://blueeemoon.github.io/bluemoon/#anchor_lightning">LIGHTNING</a></li>


<li data-menuanchor="recursos"><a href="https://blueeemoon.github.io/bluemoon/#anchor_recursos">RECURSOS</a></li>


<li data-menuanchor="publications"><a href="https://blueeemoon.github.io/bluemoon/#anchor_publications">PUBLICACIONES</a></li>


<li data-menuanchor="blog"><a href="https://blueeemoon.github.io/bluemoon/#anchor_blog">BLOG</a></li>

</ul>

</aside>

<div class="modal" id="copyTarget">
<div class="modal-background"></div>
<div class="modal-card">
<section class="modal-card-body">
<textarea class="textarea" id="bibtex-content" placeholder="e.g. Hello world" readonly></textarea>
</section>
<footer class="modal-card-foot">
<button class="button" id="copyButton">Copy to clipboard</button>
</footer>
</div>
</div>

<div id="content">
<!-- Content -->


<section class="hero is-fullheight">
<div class="hero-body">
<div class="">
<h1 class="post-title">404: Page not found</h1>
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href=https:&#x2F;&#x2F;blueeemoon.github.io&#x2F;bluemoon&#x2F;>Head back home</a> to try finding it again.</p>
</div>
</div>
</section>

</div>

<script>
function show_bib(bib_path) {
$.ajax({
url: bib_path,
success: function (data) {
$("#bibtex-content").text(data);
$("#copyTarget").addClass("is-active");
},
});
}

document
.getElementById("copyButton")
.addEventListener("click", function () {
var copyText = document.getElementById("bibtex-content");
copyText.select();
copyText.setSelectionRange(0, 99999);
navigator.clipboard.writeText(copyText.value);
$("#copyTarget").removeClass("is-active");
});
</script>





<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/fullpage.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/vendors/scrolloverflow.min.js"></script>
<script type="text/javascript">
var fullpages = new fullpage('#fullpage', {
menu: '#menu',
setRecordHistory: false,
anchors: [
'anchor_about',
'anchor_bitcoin',
'anchor_lightning',
'anchor_recursos',
'anchor_publications',
'anchor_blog',
],
afterResize: function( width, height ){
if (width < 936) {
fullpage_api.setAutoScrolling(false);
} else {
fullpage_api.setAutoScrolling(true);
}
}
});
if (screen.width < 936){
fullpages.setAutoScrolling(false);
}

</script>

</body>

</html>
179 changes: 179 additions & 0 deletions admin/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
backend:
name: github
repo: alongwy/zola-resume
branch: main
cms_label_prefix: netlify-cms/
site_domain: resume-alongwy.netlify.com

locale: "zh_Hans"
media_folder: "static/media"
public_folder: "/media"

collections:
- name: "Blog"
label: "博客"
folder: "content/blog"
create: true
fields:
- { label: "标题", name: "title", widget: "string" }
- { label: "日期", name: "date", widget: "datetime" }
- { label: "简介", name: "description", widget: "string" }
- label: "分类"
name: "taxonomies"
widget: "object"
fields:
- { label: "标签", name: "tags", widget: "list", required: false }
- label: "扩展"
name: "extra"
widget: "object"
fields:
- { label: "精选", name: "featured", widget: "boolean", required: false }
- { label: "项目/网址链接", name: "link", widget: "string" }
- { label: "项目图片", name: image, widget: "image" }
- { label: "正文", name: "body", widget: "markdown" }

- name: "Projects"
label: "开源项目"
folder: "content/projects"
create: true
fields:
- { label: "标题", name: "title", widget: "string" }
- { label: "日期", name: "date", widget: "datetime" }
- { label: "简介", name: "description", widget: "string" }
- label: "分类"
name: "taxonomies"
widget: "object"
fields:
- { label: "标签", name: "tags", widget: "list", required: false }
- label: "扩展"
name: "extra"
widget: "object"
fields:
- { label: "精选", name: "featured", widget: "boolean", required: false }
- { label: "项目/网址链接", name: "link", widget: "string" }
- { label: "项目图片", name: image, widget: "image" }
- { label: "正文", name: "body", widget: "markdown" }

- name: "Contributions"
label: "开源贡献"
folder: "content/opensource"
create: true
fields:
- { label: "标题", name: "title", widget: "string" }
- { label: "日期", name: "date", widget: "datetime" }
- { label: "简介", name: "description", widget: "string" }
- label: "分类"
name: "taxonomies"
widget: "object"
fields:
- { label: "标签", name: "tags", widget: "list", required: false }
- label: "扩展"
name: "extra"
widget: "object"
fields:
- { label: "精选", name: "featured", widget: "boolean", required: false }
- { label: "项目/网址链接", name: "link", widget: "string" }
- { label: "项目图片", name: image, widget: "image" }
- { label: "正文", name: "body", widget: "markdown" }

- name: "Publications"
label: "出版物"
folder: "content/publications"
create: true
fields:
- { label: "标题", name: "title", widget: "string" }
- { label: "日期", name: "date", widget: "datetime" }
- { label: "简介", name: "description", widget: "string" }
- label: "分类"
name: "taxonomies"
widget: "object"
fields:
- { label: "标签", name: "tags", widget: "list", required: false }
- label: "扩展"
name: "extra"
widget: "object"
fields:
- { label: "精选", name: "featured", widget: "boolean", required: false }
- { label: "引用", name: "bibtex", widget: "file" }
- { label: "项目/网址链接", name: "link", widget: "string" }
- { label: "项目图片", name: image, widget: "image" }
- { label: "正文", name: "body", widget: "markdown" }

- name: "settings"
label: "设置"
delete: false
editor:
preview: false
files:
- name: "general"
label: "网站设置"
file: "config.toml"
extension: toml
description: "网站设置"
fields:
- { label: "标题", name: "title", widget: "string" }
- name: "extra"
label: "参数"
widget: "object"
fields:
- { label: "姓氏", name: "first_name", widget: "string" }
- { label: "姓名", name: "last_name", widget: "string" }
- { label: "地址", name: "address", widget: "string" }
- { label: "照片", name: "avatar", widget: "image" }
- { label: "图标", name: "favicon", widget: "image" }
- { label: "邮箱", name: "email", widget: "string" }
- { label: "电话号码", name: "phone", widget: "string" }
- {
label: "渲染数学公式",
name: "katex",
widget: "boolean",
required: false,
}
- {
label: "显示关于",
name: "show_about",
widget: "boolean",
required: false,
}
- {
label: "显示技能",
name: "show_skills",
widget: "boolean",
required: false,
}
- {
label: "显示开源项目",
name: "show_projects",
widget: "boolean",
required: false,
}
- {
label: "显示开源贡献",
name: "show_opensource",
widget: "boolean",
required: false,
}
- {
label: "显示出版物",
name: "show_publications",
widget: "boolean",
required: false,
}
- {
label: "显示工作经历",
name: "show_experience",
widget: "boolean",
required: false,
}
- {
label: "显示教育经历",
name: "show_education",
widget: "boolean",
required: false,
}
- {
label: "显示博客",
name: "show_blog",
widget: "boolean",
required: false,
}
15 changes: 15 additions & 0 deletions admin/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CMS</title>
</head>

<body>
<!-- Include the script that builds the page and powers Netlify CMS -->
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
</body>

</html>
Loading

0 comments on commit 22f7a11

Please sign in to comment.