Skip to content

Commit

Permalink
FIRST VERSION
Browse files Browse the repository at this point in the history
FRIST VERSION !

---

My website is complete for code. Let's upgrade it and add more blogs!

Co-Authored-By: HYMGi <119415217+HYMGi@users.noreply.github.com>
  • Loading branch information
HuangYiming0608 and HYMGi committed Jun 22, 2024
1 parent 1938ab5 commit cb45395
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'AMD,CPU,硬件】Ryzen 7000(后)移动端CPU命名'
title: '【硬件】Ryzen 7000(后)移动端CPU命名'
pubDate: 'Jun 10 2024'
heroImage: '/blog-placeholder-1.jpg'
description: '探索苏姿丰在AMD Ryzen 7000(Laptop)CPU发布会上公布的新命名方式'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

title: 'C++,软件】C++20 Module 模块'
title: '【软件】C++20 Module 模块'
pubDate: 'Jun 15 2024'
heroImage: '/blog-placeholder-2.jpg'
description: 'C++20 Module 模块在OI中的应用'
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BlogPost.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type Props = CollectionEntry<'blog'>['data'];
const { title, description, pubDate, updatedDate, heroImage } = Astro.props;
---

<html lang="en">
<html lang="zh-CN">
<head>
<BaseHead title={title} description={description} />
<style>
Expand Down
6 changes: 4 additions & 2 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
---

<!doctype html>
<html lang="en">
<html lang="zh-CN">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
<body>
<Header />
<main>
<h1>页面未找到<br></h1>
<img src="/404.png" alt="你成功用尺规作图解出以下问题了吗?\n1.三等分角2.立方倍积3.画圆为方">
<img src="/404.png" alt="你成功用尺规作图解出以下问题了吗?\n1.三等分角\n2.立方倍积\n3.画圆为方">
<p>什么?你觉得应该有这个页面?在<a href="https://github.com/huangyiming0608/huangyiming0608.github.io">Github</a>上Fork,然后修改,最后不要忘记提交Pull Request!</p>
<p>还有,Github Pages是有延迟的哦!</p>
</main>
<Footer />
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const posts = (await getCollection('blog')).sort(
---

<!doctype html>
<html lang="en">
<html lang="zh-CN">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<style>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
---

<!doctype html>
<html lang="en">
<html lang="zh-CN">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/search.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Search from 'astro-pagefind/components/Search';
---

<!doctype html>
<html lang="en">
<html lang="zh-CN">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
Expand Down

0 comments on commit cb45395

Please sign in to comment.