Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 春季学期第一次作业(4.22提交) #303

Open
wj23027 opened this issue Apr 8, 2024 · 92 comments
Open

2024 春季学期第一次作业(4.22提交) #303

wj23027 opened this issue Apr 8, 2024 · 92 comments

Comments

@wj23027
Copy link
Contributor

wj23027 commented Apr 8, 2024

  • 作业内容:选择一个感兴趣或擅长的主题来制作一个静态网页博客,比如个人介绍、爱好分享、技术总结等。

  • 作业要求:

    • 设计至少四个页面来展示博客内容,不限于首页、关于我、文章列表、文章详情等。
    • 博客排版清晰、内容合理,代码整洁优雅,可读性强。
    • 附上自己对本次作业的总结及反思,包括但不限于以下内容:(可以放在博客中)
      • 博客主题及其选取原因
      • 博客页面布局及其设计思路
      • 博客功能实现及其技术选择
      • 博客制作过程中遇到的问题及其解决方法
  • 本次作业将按照以下几个维度对总结报告网站内容评分:

    • 技术汇报:评价学生利用了哪些技术或工具来实现博客功能,是否能够正常运行和并且足够了解相关技术。
    • 内容丰富度:评价学生设计了什么样的页面结构来展示博客内容,并且是否有达到足够四个页面的内容。
    • 博客主题:评价学生选择了什么样的主题来展示自己的兴趣或专长,并且是否能够吸引读者关注,博客页面中存在实质性内容即可通过。
  • 截止时间:本次作业将于4月8日开始,持续两周,请大家在截止日期(4月22日)上课之前完成并提交作业。

  • 提交方式:在此 issue 下给出学号、姓名以及博客仓库链接、博客主页链接、总结报告,例如:

12345678 张三
仓库链接:
主页链接:
总结报告:

@wj23027
Copy link
Contributor Author

wj23027 commented Apr 8, 2024

静态网页博客介绍

静态网页博客是一种不需要后端服务器和数据库支持的网站,只需要使用HTML、CSS和JavaScript等前端技术就可以实现。静态网页博客有很多优点,比如速度快、安全稳定、易于维护等。
可能用到的技术以及概念:

  • GitHub Pages
    • GitHub Pages 是 GitHub 提供的一项静态网站托管服务,允许用户将他们的静态网页项目直接托管在 GitHub 上。
    • 用户可以使用 GitHub 提供的域名(例如 yourusername.github.io)或者绑定自己的域名来访问他们的网站。
    • GitHub Pages 支持 HTML、CSS、JavaScript 等前端技术,并且与 GitHub 仓库无缝集成,使得更新网站内容变得十分方便。
    • GitHub Pages 也支持使用 Jekyll 和 Hexo 等静态网站生成器。这些生成器可以帮助用户更轻松地管理网站内容,提供了模板、主题、插件等功能,使得网站的构建和维护更加简单高效。
  • SSG框架
    • 一种常用的框架是 Jekyll ,它是一个Ruby编写的、快速、简洁且高效的静态网站生成引擎,它使用一个模板目录作为网站布局的基础框架,支持 Markdown、Textile 等标记语言的解析,提供了模板、变量、插件等功能,最终生成一个完整的静态 Web 站点。你可以在 GitHub Pages 上直接使用 Jekyll 来搭建博客,并且选择不同的主题来美化你的博客界面。
    • 另一种常用的框架是 Hexo,它也是一个快速、简洁且高效的静态网站生成引擎,它使用 Node.js 编写,并且提供了丰富的插件和主题来扩展和定制你的博客功能和外观。你可以在本地使用 Hexo 来编写和预览你的博客内容,并且通过简单的命令就能将生成的网页上传到 GitHub Pages 上。
    • 如果你想要更多选择或灵感,你可以参考以下链接中收集或推荐了一些基于 GitHub Pages 的各类开源项目模板 ,比如程序员个性化简历、程序员酷炫博客等等。这些模板都有相应的项目地址和预览地址,你可以根据自己喜欢或需要来选择或修改。Static Site Generators - Top Open Source SSGs | Jamstack
  • Git
    • 分布式版本控制系统,用于管理你的代码和文件。你需要使用 Git 将你的静态网页上传到 GitHub 上,同步到 GitHub Pages。
  • Markdown
    • Markdown 语法的官方规范可以在 ruanyf/document-style-guide: 中文技术文档的写作规范 (github.com) 查看,其中包含了基本语法和扩展语法的说明和示例。
    • 检查 Markdown 的源代码是否规范排版正确,有以下几种方法:
      • 使用在线工具,如 Markdownlint,可以直接在网页上输入或粘贴 Markdown 源代码,然后查看是否有错误或警告提示,并按照建议进行修改。
      • 使用 VSCode 插件,如 Markdown All in One和 Markdownlin,可以在 VSCode 编辑器中实时检查和预览 Markdown 源代码,并提供一键修复的功能。
  • Frontmatter
    • Frontmatter 是一种在 Markdown 文件中添加元数据的方法,它由三条虚线包围的有效的 YAML、JSON 或 TOML 格式的内容组成。
    • 在静态博客中,Frontmatter 可以用来指定一些页面的配置选项,例如标题、描述、布局、语言、标签、分类等。这些选项可以影响页面的生成和展示方式,也可以被其他组件或插件访问和使用。

@wj23027
Copy link
Contributor Author

wj23027 commented Apr 8, 2024

● 一些主题网站:
Hexo
Jekyll
Hugo

@GuoTeng-ECNU
Copy link

51265903053 郭腾
仓库链接:https://github.com/GuoTeng-ECNU/GuoTeng-ECNU.github.io
主页链接:https://guoteng-ecnu.github.io/
总结报告:https://guoteng-ecnu.github.io/2024/04/10/blog-report/

@MarigWeizhi
Copy link

51265903083 周伟
仓库链接:https://github.com/MarigWeizhi/marigweizhi.github.io
主页链接:https://marigweizhi.github.io/
总结报告:https://marigweizhi.github.io/2024/04/10/init-VBlob/

@WelJunyu
Copy link

51265903076 韦俊宇
仓库链接:https://github.com/WelJunyu/blog
主页链接:https://weijunyu-blog.vercel.app/
总结报告:https://weijunyu-blog.vercel.app/blog-report

@Tenth-crew
Copy link

51265903045 游明东
仓库链接:https://github.com/Tenth-crew/Tenth-crew.github.io
主页链接:https://tenth-crew.github.io/
总结报告:https://tenth-crew.github.io/2024/04/11/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%8A%A5%E5%91%8A/

@PureNatural
Copy link

52275903008 韩凡宇
仓库链接:https://github.com/PureNatural/PureNatural.github.io
主页链接:https://purenatural.github.io/
总结报告:https://purenatural.github.io/2024/04/12/hugo-share/

@HalloMelon
Copy link

51265903088 赵思嘉
仓库链接:https://github.com/HalloMelon/myblog
主页链接:https://hallomelon.github.io/myblog/
总结报告:https://hallomelon.github.io/myblog/thoughts/

@dbbDylan
Copy link

51265903105 丁永亮
仓库链接:https://github.com/TommySoya/TommySoya.github.io
主页链接:https://tommysoya.github.io/
总结报告:https://tommysoya.github.io/2024/04/12/%E4%B8%AA%E4%BA%BA%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%80%BB%E7%BB%93%E6%8A%A5%E5%91%8A/

@Thrrreeee
Copy link

51265903112 施瑾睿
仓库链接: https://github.com/Thrrreeee/Thrrreeee.github.io
主页链接: https://thrrreeee.github.io/
总结报告: 个人博客搭建流程

@wouldmm
Copy link

wouldmm commented Apr 15, 2024

51265903110 梅杰源
仓库链接: https://github.com/wouldmm/wouldmm.github.io
主页链接: https://wouldmm.github.io/
总结报告: https://wouldmm.github.io/posts/2024/04/blog-post-1/

@yangxinyu7427
Copy link

51265903066 杨新宇
仓库链接:https://github.com/yangxinyu7427/yangxinyu7427.github.io
主页链接:https://yangxinyu7427.github.io/
总结报告:https://yangxinyu7427.github.io/2024/04/15/%E4%BD%BF%E7%94%A8Hexo%E6%A1%86%E6%9E%B6-butterfly%E6%90%AD%E5%BB%BA%E5%8D%9A%E5%AE%A2/

@zhangjiarui530
Copy link

51265903059 张嘉睿
仓库链接
主页链接
总结报告

@smog1995
Copy link

51265903003 马洋涛
仓库链接:https://github.com/smog1995/smog1995.github.io
主页链接:https://smog1995.github.io/
总结报告:https://smog1995.github.io/2024/04/15/blog-summry/

@mksyk
Copy link

mksyk commented Apr 15, 2024

51265903090 崔仁静
仓库链接:https://github.com/mksyk/mksyk.github.io
主页链接:https://mksyk.github.io/
总结报告:https://mksyk.github.io/2024/04/15/report.html

@zzz-ovo
Copy link

zzz-ovo commented Apr 15, 2024

5126590307 郑中正
仓库链接:https://github.com/zzz-ovo/zzz-ovo.github.io
主页链接:https://zzz-ovo.github.io/
总结报告:https://zzz-ovo.github.io/2024/04/15/%E6%80%BB%E7%BB%93/

@elegaa
Copy link

elegaa commented Apr 16, 2024

51265903077 侯婷
仓库链接:https://github.com/elegaa/elegaa.github.io
主页链接:https://elegaa.github.io/
总结报告:https://elegaa.github.io/posts/tutorial/

@JiaheZhi
Copy link

51265903104 支家和
仓库链接:https://github.com/JiaheZhi/JiaheZhi.github.io
主页链接:https://jiahezhi.github.io/
总结报告:https://jiahezhi.github.io/2024/04/16/%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%9C%E4%B8%9A%E6%80%BB%E7%BB%93%E6%8A%A5%E5%91%8A/

@xyjsophie
Copy link

51265903111 夏益君
仓库链接:https://github.com/xyjsophie/xyjsophie.github.io
主页链接:https://xyjsophie.github.io/
总结报告:https://xyjsophie.github.io/2024/04/16/hexo-github%E6%90%AD%E5%BB%BA%E5%8D%9A%E5%AE%A2/

@399617
Copy link

399617 commented Apr 16, 2024

51265903081 刁圆员
仓库链接:https://github.com/399617/399617.github.io
主页链接:https://399617.github.io/
总结报告:https://399617.github.io/2024/04/15/hexo/

@woyaochimangguo
Copy link

51265903024 童文平
仓库链接:https://github.com/woyaochimangguo/woyaochimangguo.github.io
主页链接:https://woyaochimangguo.github.io/
总结报告:https://woyaochimangguo.github.io/2024/04/16/new-theme-h2o.html

@ECNU-51265903094
Copy link

51265903094 毕其功
仓库链接:ECNU-51265903094.github.io
主页链接:https://ecnu-51265903094.github.io/
总结报告:https://ecnu-51265903094.github.io/2024/04/10/2/

@yanghy233
Copy link

51265903065 杨洪宇
仓库链接:https://github.com/yanghy233/yanghy233.github.io
主页链接:https://yanghy233.github.io/
总结报告:https://yanghy233.github.io/2024/04/16/hexo-fluid-build/

@iamSmallY
Copy link

iamSmallY commented Apr 16, 2024

51265904096 杨贇
仓库链接:iamSmally.github.io
主页链接:https://blog.smallyy.cn/
总结报告:https://blog.smallyy.cn/2024/04/16/report/#more

@AnKate
Copy link

AnKate commented Apr 17, 2024

51265903097 赵奕轲
仓库链接:https://github.com/AnKate/AnKate.github.io
主页链接:https://ankate.github.io
总结报告:静态网页博客搭建总结报告

@beyond-mountains
Copy link

51265903092 曹品善
仓库链接:https://github.com/beyond-mountains/beyond-mountains.github.io
主页链接:https://beyond-mountains.github.io/
总结报告:https://beyond-mountains.github.io/posts/Summary/

@Imamtss
Copy link

Imamtss commented Apr 17, 2024

51265903038 臧志阳
仓库链接:https://github.com/Imamtss/Imamtss.github.io
主页链接:https://imamtss.github.io/
总结报告:https://imamtss.github.io/2024/04/17/3/

@hzshou
Copy link

hzshou commented Apr 17, 2024

51265903113 寿泓柘
仓库链接:https://github.com/hzshou/hzshou.github.io
主页链接:https://hzshou.github.io/
总结报告:https://hzshou.github.io/2024/04/09/%E5%88%9B%E5%BB%BA%E6%84%9F%E6%82%9F/

@MrH233
Copy link

MrH233 commented Apr 17, 2024

51265903102 黄小鹏
仓库链接:https://github.com/MrH233/MrH233.github.io
主页链接:https://MrH233.github.io
总结报告:https://mrh233.github.io/2024/04/15/%E5%8D%9A%E5%AE%A2%E4%BD%9C%E4%B8%9A%E6%A6%82%E8%BF%B0/

@wuhongyyyy
Copy link

51265903068 吴泓宇
仓库链接:https://github.com/wuhongyyyy/wuhongyyyy.github.io
主页链接:https://wuhongyyyy.github.io/
总结报告:https://wuhongyyyy.github.io/2024/04/16/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E7%BB%8F%E9%AA%8C/

@YJett
Copy link

YJett commented Apr 21, 2024

51265903057 叶韩辉
仓库链接:https://github.com/YJett/YJett.github.io
主页链接:https://yjett.github.io/
总结报告:https://yjett.github.io/2024/04/21/%E9%83%A8%E7%BD%B2%E5%BF%83%E5%BE%97/

@joyLlll
Copy link

joyLlll commented Apr 21, 2024

51265903075 廖欣
仓库链接:https://github.com/joyLlll/joyLlll.github.io
主页链接:https://joyllll.github.io/
总结报告:https://joyllll.github.io/2024/04/21/%E6%8A%80%E6%9C%AF%E6%8A%A5%E5%91%8A/%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%9C%E4%B8%9A%E6%8A%A5%E5%91%8A/

@CD22104
Copy link

CD22104 commented Apr 21, 2024

51265903064 陈碟
仓库链接:https://github.com/CD22104/CD22104.github.io
主页链接:https://cd22104.github.io/
总结报告:https://cd22104.github.io/2024/04/21/%E6%80%BB%E7%BB%93%E6%8A%A5%E5%91%8A/

@W1evy
Copy link

W1evy commented Apr 21, 2024

51265903067 吴逸伟
仓库链接:https://github.com/W1evy/W1evy.github.io
主页链接:https://w1evy.github.io/
总结报告:https://w1evy.github.io/2024/04/21/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%80%BB%E7%BB%93/

@CD22104
Copy link

CD22104 commented Apr 21, 2024 via email

@Fiveneves
Copy link

51265903031 单佑婉弘
仓库链接:https://github.com/Fiveneves/Fiveneves.github.io
主页链接:https://fiveneves.github.io/
总结报告:https://fiveneves.github.io/2024/04/20/Welcome-to-my-blog/

@zxy292929
Copy link

51265903009 张馨元
仓库链接:https://github.com/zxy292929/zxy292929.github.io
主页链接:https://zxy292929.github.io/
总结报告:https://zxy292929.github.io/2024/04/21/%E6%80%BB%E7%BB%93%E6%8A%A5%E5%91%8A/

@qcshentu
Copy link

qcshentu commented Apr 21, 2024

51265903107 申屠琦超
仓库链接:https://github.com/QichaoShentu/qichaoshentu.github.io
主页链接:https://qichaoshentu.github.io/
总结报告:https://qichaoshentu.github.io/2024/04/21/Homework/

@ccloud0525
Copy link

51265903061 吴行健
仓库链接:https://github.com/ccloud0525/ccloud0525.github.io
主页链接:https://ccloud0525.github.io/
总结报告:https://ccloud0525.github.io/cn/Hexo-%E9%9D%99%E6%80%81%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%8C%87%E5%8D%97/

@Cloni418
Copy link

51265903039 李北步
仓库链接: https://github.com/Cloni418/Cloni418.github.io
主页链接: https://cloni418.github.io/
总结报告:https://cloni418.github.io/2024/04/21/First_Homework/

@zzlTim
Copy link

zzlTim commented Apr 21, 2024

51265903047 郑子路
仓库链接: https://github.com/zzlTim/zzlTim.github.io
主页链接: https://zzlTim.github.io/
总结报告:https://zzltim.github.io/p/%E4%BD%9C%E4%B8%9A%E6%80%BB%E7%BB%93/

@MaxWeeeell
Copy link

51265903062 邱钰莹
仓库链接:https://github.com/MaxWeeeell/MaxWeeeell.github.io
主页链接:https://maxweeeell.github.io/
总结报告:https://maxweeeell.github.io/2024/04/21/%E6%80%BB%E7%BB%93%E4%B8%8E%E5%8F%8D%E6%80%9D/

@aHuang33
Copy link

51265903018 黄姗姗
仓库链接:https://github.com/aHuang33/aHuang33.github.io
主页链接:https://ahuang33.github.io/
总结报告:https://ahuang33.github.io/2024/04/21/%E4%BD%9C%E4%B8%9A%E6%80%BB%E7%BB%93/

@dinyy
Copy link

dinyy commented Apr 21, 2024

51265903109 杨佳宁
仓库链接:https://github.com/dinyy/dinyy.github.io
主页链接:https://dinyy.github.io
总结报告:https://dinyy.github.io/posts/guide/

@1120680244
Copy link

@kxkllday
Copy link

51265903050 孙文文
仓库链接:https://github.com/kxkllday/kxkllday.github.io
主页链接:https://kxkllday.github.io/
总结报告:https://kxkllday.github.io/2024/04/22/summary/

@Lengxiaoyi
Copy link

51265903087 冷宜隆
仓库链接:https://github.com/Lengxiaoyi/Lengxiaoyi.github.io
主页链接:https://lengxiaoyi.github.io/
总结报告:https://lengxiaoyi.github.io/%E5%AE%9E%E9%AA%8C%E6%8A%A5%E5%91%8A_%E5%86%B7%E5%AE%9C%E9%9A%86_51265903087.html

@SSSSSSilly
Copy link

51265903063 裘盼佳
仓库链接:https://github.com/SSSSSSilly/SSSSSSilly.github.io
主页链接:https://ssssssilly.github.io/
总结报告:https://ssssssilly.github.io/2024/04/22/conclusion/

@wcynnn
Copy link

wcynnn commented Apr 22, 2024

51265903103 王超亚
仓库链接:https://github.com/wcynnn/wcynnn.github.io
主页链接:https://wcynnn.github.io/
总结报告:https://wcynnn.github.io/markdown/

@zyy981012
Copy link

51265903032 郑岩钰
仓库链接:https://github.com/zyy981012/zyy981012.github.io
主页链接:https://zyy981012.github.io/
总结报告:https://zyy981012.github.io/zongjiebaogao/

@vitaminzl
Copy link

51265903086 曾龙
仓库链接:https://github.com/vitaminzl/vitaminzl.github.io
主页链接:https://vitaminzl.com
总结报告:https://vitaminzl.com/2024/04/22/others/opensource-hw1

@wblxxx
Copy link

wblxxx commented Apr 22, 2024

51265903040 吴泽贤
仓库链接
主页链接
总结报告

@Neat12138
Copy link

51265903055 刘天扬
仓库链接:https://github.com/Neat12138/Neat12138.github.io
主页链接:https://neat12138.github.io/
总结报告:https://neat12138.github.io/2024/04/20/%E4%B8%AA%E4%BA%BA%E5%8D%9A%E5%AE%A2%E9%83%A8%E7%BD%B2%E4%BD%9C%E4%B8%9A%E6%8A%A5%E5%91%8A/

@Ld151739500002
Copy link

Ld151739500002 commented Apr 22, 2024

51265903058 李垫
仓库链接
主页
总结

@worstwoman
Copy link

51265903043 王硕
仓库链接:https://github.com/worstwoman/worstwoman.github.io
主页链接:https://worstwoman.github.io/
总结报告:https://worstwoman.github.io/2024/04/22/%E6%8A%80%E6%9C%AF%E6%8A%A5%E5%91%8A/

@AquariusAQ
Copy link

52285903003 段晗祈
仓库链接:https://github.com/AquariusAQ/AquariusAQ.github.io
主页链接:https://aquariusaq.github.io/
总结报告:https://aquariusaq.github.io/post/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%80%BB%E7%BB%93%E6%8A%A5%E5%91%8A/

@xudingsheng
Copy link

51265903114 许定胜
仓库链接: https://github.com/xudingsheng/xudingsheng.github.io/tree/master
主页链接: https://xudingsheng.github.io/
总结报告: https://github.com/xudingsheng/xudingsheng.github.io/blob/master/README.md

@xxrelax
Copy link

xxrelax commented Apr 22, 2024

51265903084 钟青松
仓库链接:https://github.com/xxrelax/xxrelax.github.io.git
主页链接:https://xxrelax.github.io
总结报告: https://xxrelax.github.io/2024/04/22/%E6%80%BB%E7%BB%93/

@CarterpillarOnGh
Copy link

51265903085 张偲欣
仓库链接:https://github.com/CarterpillarOnGh/CarterpillarOnGh.github.io.git
主页链接:https://carterpillarongh.github.io/
总结报告:https://carterpillarongh.github.io/2024/04/22/%E4%BD%9C%E4%B8%9A%E6%80%BB%E7%BB%93/

@Mark-00z
Copy link

51265903034 郑朴辰
仓库链接:https://github.com/Mark-00z/mark-00z.github.io
主页链接:https://mark-00z.github.io/
总结报告:https://mark-00z.github.io/2024/04/22/2024-04-22-blog-report/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests