Files
SWebStatic/layouts/softwares/list.html
T

19 lines
664 B
HTML

{{ define "body" }}
<section class="page-hero" style="--accent: #009688">
<h1>{{ .Title }}</h1>
<p class="subtitle">{{ .Description }}</p>
</section>
<section class="page-content container">
<div class="about-intro">
<p>S.A. (@snoware) — 开源爱好者,Rust / Ruby 开发者。致力于构建实用、安全、优雅的命令行工具与服务端软件。</p>
<a href="https://gitee.com/snoware" class="btn btn-accent external" target="_blank" rel="noopener">Gitee 主页</a>
</div>
<div class="project-grid">
{{ range hugo.Data.projects.projects }}
{{ partial "project-card.html" . }}
{{ end }}
</div>
</section>
{{ end }}