- hugo
- theme: airspace-hugo
hugo new site hugo_demo_site
cd hugo_demo_site
cd themes
git clone https://github.com/themefisher/airspace-hugo
将themes/airspace-hugo/exampleSite的文件复制出来
- home
- blog
- -> events(work)
- -> service
- about
- contact
events -> 火星车活动 service -> 已有网站 / 公众号 OUR SERVICES
二维码
hugo new blog/first.md
hugo server --theme=airspace-hugo --buildDrafts
make push
themes/airspace-hugo/layouts/_default/list.html 模版
使用more注释标签来写摘要
按照yc课程的建议,先start-up,把流程走通
外部连接
使用code clab 卡片式资源入口,带入最好的资源 以兴趣分流 * code club入门课程 * cn * makecode * raspberry * 志愿者(页脚) * 入门,如何让一个人入门 * 软件,硬件,后续 * 活动 * about
自托管图片,避免云故障
ack -ho "http://wwj-fig-bed.just4fun.site/.*.png" > /tmp/codelab_blog_png_list.txt
取得图片列表保存下来
cd img
python3
import subprocess
with open("/tmp/codelab_blog_png_list.txt") as png_url_list:
urls = png_url_list.readlines()
for url in urls:
cmd = f"wget {url}"
# print(cmd)
subprocess.call(cmd,shell=True)