starters: rename Minimal starter to LinkInBio & port to use Tailwind module
2
.github/workflows/split-packages.yaml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
|||
split_repository: 'starter-hugo-portfolio-theme'
|
||||
- local_path: 'course'
|
||||
split_repository: 'starter-hugo-online-course'
|
||||
- local_path: 'minimal'
|
||||
- local_path: 'link-in-bio'
|
||||
split_repository: 'hugo-link-in-bio-theme'
|
||||
- local_path: 'research-group'
|
||||
split_repository: 'starter-hugo-research-group'
|
||||
|
|
|
@ -1,93 +0,0 @@
|
|||
# Configuration of Hugo
|
||||
# Guide: https://wowchemy.com/docs/getting-started/
|
||||
# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
|
||||
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
|
||||
|
||||
title: Hugo Academic Blog Theme # Website name
|
||||
baseURL: 'https://example.com/' # Website URL
|
||||
|
||||
############################
|
||||
## PAGE OPTIONS
|
||||
############################
|
||||
|
||||
cascade:
|
||||
# Blog post options
|
||||
- _target:
|
||||
path: /post/**
|
||||
pager: true
|
||||
editable: true
|
||||
reading_time: true
|
||||
commentable: true
|
||||
show_related: true
|
||||
show_breadcrumb: true
|
||||
share: true
|
||||
header:
|
||||
navbar:
|
||||
enable: false
|
||||
|
||||
############################
|
||||
## LANGUAGE
|
||||
############################
|
||||
|
||||
defaultContentLanguage: en
|
||||
hasCJKLanguage: false
|
||||
defaultContentLanguageInSubdir: false
|
||||
removePathAccents: true
|
||||
|
||||
############################
|
||||
## MODULES
|
||||
############################
|
||||
|
||||
module:
|
||||
imports:
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5
|
||||
|
||||
############################
|
||||
## ADVANCED
|
||||
############################
|
||||
|
||||
enableGitInfo: false
|
||||
summaryLength: 30
|
||||
paginate: 10
|
||||
enableEmoji: true
|
||||
enableRobotsTXT: true
|
||||
footnotereturnlinkcontents: <sup>^</sup>
|
||||
ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
|
||||
permalinks:
|
||||
authors: '/author/:slug/'
|
||||
tags: '/tag/:slug/'
|
||||
categories: '/category/:slug/'
|
||||
disableAliases: true
|
||||
outputs:
|
||||
home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
|
||||
section: [HTML, RSS]
|
||||
imaging:
|
||||
resampleFilter: lanczos
|
||||
quality: 75
|
||||
anchor: smart
|
||||
timeout: 600000
|
||||
taxonomies:
|
||||
tag: tags
|
||||
category: categories
|
||||
author: authors
|
||||
markup:
|
||||
_merge: deep
|
||||
highlight:
|
||||
lineNos: false
|
||||
related:
|
||||
threshold: 80
|
||||
includeNewer: true
|
||||
toLower: true
|
||||
indices:
|
||||
- name: tags
|
||||
weight: 100
|
||||
- name: categories
|
||||
weight: 70
|
||||
security:
|
||||
_merge: deep
|
||||
sitemap:
|
||||
_merge: deep
|
||||
minify:
|
||||
_merge: deep
|
|
@ -1,21 +0,0 @@
|
|||
[build]
|
||||
command = "hugo --gc --minify -b $URL"
|
||||
publish = "public"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.97.3"
|
||||
HUGO_ENABLEGITINFO = "true"
|
||||
|
||||
[context.production.environment]
|
||||
HUGO_ENV = "production"
|
||||
|
||||
[context.deploy-preview]
|
||||
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
|
||||
|
||||
[context.branch-deploy]
|
||||
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
|
||||
|
||||
[[plugins]]
|
||||
package = "netlify-plugin-hugo-cache-resources"
|
||||
[plugins.inputs]
|
||||
debug = true
|
BIN
starters/link-in-bio/.github/preview.webp
vendored
Normal file
After Width: | Height: | Size: 73 KiB |
70
starters/link-in-bio/.github/workflows/publish.yaml
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
name: Deploy Wowchemy website to GitHub Pages
|
||||
|
||||
env:
|
||||
WC_HUGO_VERSION: '0.119.0'
|
||||
|
||||
on:
|
||||
# Trigger the workflow every time you push to the `main` branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
# Allows you to run this workflow manually from the Actions tab on GitHub.
|
||||
workflow_dispatch:
|
||||
|
||||
# Provide permission to clone the repo and deploy it to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
# Build website
|
||||
build:
|
||||
if: github.repository_owner != 'wowchemy'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
# Fetch history for Hugo's .GitInfo and .Lastmod
|
||||
fetch-depth: 0
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: ${{ env.WC_HUGO_VERSION }}
|
||||
extended: true
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: /tmp/hugo_cache_runner/
|
||||
key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.mod') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-hugomod-
|
||||
- name: Setup Pages
|
||||
id: pages
|
||||
uses: actions/configure-pages@v3
|
||||
- name: Build with Hugo
|
||||
env:
|
||||
HUGO_ENVIRONMENT: production
|
||||
run: |
|
||||
echo "Hugo Cache Dir: $(hugo config | grep cachedir)"
|
||||
hugo --minify --baseURL "${{ steps.pages.outputs.base_url }}/"
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v2
|
||||
with:
|
||||
path: ./public
|
||||
|
||||
# Deploy website to GitHub Pages hosting
|
||||
deploy:
|
||||
if: github.repository_owner != 'wowchemy'
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
|
@ -1,31 +1,29 @@
|
|||
<!--<p align="center"><a href="https://wowchemy.com" target="_blank" rel="noopener"><img src="https://sourcethemes.com/academic/img/logo_200px.png" alt="Wowchemy Website Builder"></a></p>-->
|
||||
# [Fast & Flexible Link In Bio Theme](https://github.com/wowchemy/hugo-link-in-bio-theme)
|
||||
|
||||
# [Hugo Academic Blog Theme](https://github.com/wowchemy/hugo-blog-theme)
|
||||
[](https://wowchemy.com/templates/)
|
||||
|
||||
[](https://wowchemy.com/hugo-themes/)
|
||||
The **Fast & Flexible Link In Bio Template** empowers you to easily create a personalized and customizable page that houses all the important links that you want to share with your audience.
|
||||
|
||||
The **Hugo Academic Blog Template** empowers you to easily create your own _personal blog_ or _build a business around your content_.
|
||||
It's a link-in-bio solution that can be used on social platforms like Instagram, TikTok, Twitch, Facebook, YouTube, Twitter, LinkedIn, and more, by pasting your website link in your social media bio. **Start accelerating the discovery of your work, brand, or business!**
|
||||
|
||||
️**Trusted by 250,000+ researchers, educators, and students.** Highly customizable via the integrated **no-code, widget-based Wowchemy page builder**, making every site truly personalized ⭐⭐⭐⭐⭐
|
||||
️**Trusted by 250,000+ creators, researchers, and educators.** Highly customizable via the integrated **no-code, widget-based Wowchemy page builder**, making every site truly personalized ⭐⭐⭐⭐⭐
|
||||
|
||||
[](https://wowchemy.com/hugo-themes/)
|
||||
[Check out the latest demo](https://link-in-bio-theme.netlify.app) of what you'll get in less than 5 minutes, or [view the showcase](https://wowchemy.com/creators/).
|
||||
|
||||
[](https://wowchemy.com/templates/)
|
||||
[](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)
|
||||
[](https://twitter.com/wowchemy)
|
||||
|
||||
Easily write technical content with plain text Markdown, LaTeX math, diagrams, RMarkdown, or Jupyter, and import publications from BibTeX.
|
||||
|
||||
[Check out the latest demo](https://hugo-blog-theme.netlify.app/) of what you'll get in less than 10 minutes, or [view the showcase](https://wowchemy.com/creators/).
|
||||
|
||||
The integrated [**Wowchemy**](https://wowchemy.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.
|
||||
|
||||
- 👉 [**Get Started**](https://wowchemy.com/hugo-themes/)
|
||||
- 📚 [View the **documentation**](https://wowchemy.com/docs/)
|
||||
- 👉 [**Get Started**](https://wowchemy.com/templates/)
|
||||
- 📚 [View the **documentation**](https://university.wowchemy.com/)
|
||||
- 💬 [Chat with the **Wowchemy research community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)
|
||||
- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/wowchemy/hugo-academic-cli)
|
||||
- ⬇️ **Automatically import citations from BibTeX** with the [Bibtex to Markdown tool](https://github.com/wowchemy/bibtex-to-markdown)
|
||||
- 🐦 Share your new site with the community: [@wowchemy](https://twitter.com/wowchemy) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithWowchemy](https://twitter.com/search?q=%23MadeWithWowchemy&src=typed_query)
|
||||
- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)
|
||||
- 🚀 [Contribute improvements](https://github.com/wowchemy/wowchemy-hugo-themes/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/wowchemy/wowchemy-hugo-themes/issues)
|
||||
- ⬆️ **Updating?** View the [Update Guide](https://wowchemy.com/docs/hugo-tutorials/update/) and [Release Notes](https://github.com/wowchemy/wowchemy-hugo-themes/releases)
|
||||
- ⬆️ **Updating?** View the [Update Guide](https://university.wowchemy.com/) and [Release Notes](https://github.com/wowchemy/wowchemy-hugo-themes/releases)
|
||||
|
||||
## We ask you, humbly, to support this open source movement
|
||||
|
||||
|
@ -34,8 +32,3 @@ Today we ask you to defend the open source independence of the Wowchemy website
|
|||
We're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.
|
||||
|
||||
### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)
|
||||
|
||||
## Demo credits
|
||||
|
||||
- Images
|
||||
- [cat](https://unsplash.com/photos/GtwiBmtJvaU) (in blog post)
|
2
starters/link-in-bio/assets/dist/wc.css
vendored
Normal file
21
starters/link-in-bio/assets/media/bg-hue.svg
Normal file
|
@ -0,0 +1,21 @@
|
|||
<svg width="1440" height="600" viewBox="0 0 1440 600" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="1440" height="600" fill="#C4C4C4" fill-opacity="0.1"/>
|
||||
<rect width="1440" height="600" fill="url(#paint0_radial)"/>
|
||||
<rect width="1440" height="600" fill="url(#paint1_radial)"/>
|
||||
<rect width="1440" height="600" fill="url(#paint2_radial)"/>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(814 646.211) rotate(-130.014) scale(677.326 1326.89)">
|
||||
<stop stop-color="#A8FFE0"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(311.5) rotate(78.4075) scale(676.787 1595.14)">
|
||||
<stop stop-color="#9AB8FF"/>
|
||||
<stop offset="1" stop-color="#A9FFF0" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(997) rotate(96.7161) scale(521.592 1244.21)">
|
||||
<stop stop-color="#F3A8FF"/>
|
||||
<stop offset="0.0001" stop-color="#FFB3CA"/>
|
||||
<stop offset="1" stop-color="#B9FFC8" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -3,7 +3,7 @@
|
|||
# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
|
||||
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
|
||||
|
||||
title: Hugo Minimal Theme # Website name
|
||||
title: Fast & Free Link In Bio Website (Hugo Theme) # Website name
|
||||
baseURL: 'https://example.com/' # Website URL
|
||||
|
||||
############################
|
||||
|
@ -21,15 +21,15 @@ removePathAccents: true
|
|||
|
||||
module:
|
||||
imports:
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms
|
||||
disable: true
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5
|
||||
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-tailwind
|
||||
|
||||
############################
|
||||
## ADVANCED
|
||||
############################
|
||||
|
||||
build:
|
||||
writeStats: true
|
||||
enableGitInfo: false
|
||||
summaryLength: 30
|
||||
paginate: 10
|
||||
|
@ -43,31 +43,20 @@ permalinks:
|
|||
categories: '/category/:slug/'
|
||||
disableAliases: true
|
||||
outputs:
|
||||
home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
|
||||
home: [HTML, RSS, headers, redirects]
|
||||
section: [HTML, RSS]
|
||||
imaging:
|
||||
resampleFilter: lanczos
|
||||
quality: 75
|
||||
quality: 95
|
||||
anchor: smart
|
||||
timeout: 600000
|
||||
taxonomies:
|
||||
tag: tags
|
||||
category: categories
|
||||
author: authors
|
||||
markup:
|
||||
_merge: deep
|
||||
related:
|
||||
threshold: 80
|
||||
includeNewer: true
|
||||
toLower: true
|
||||
indices:
|
||||
- name: tags
|
||||
weight: 100
|
||||
- name: categories
|
||||
weight: 70
|
||||
highlight:
|
||||
lineNos: false
|
||||
security:
|
||||
_merge: deep
|
||||
sitemap:
|
||||
_merge: deep
|
||||
minify:
|
||||
_merge: deep
|
38
starters/link-in-bio/config/_default/params.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
# SITE SETUP
|
||||
# Guide: https://wowchemy.com/docs/getting-started/
|
||||
# Documentation: https://wowchemy.com/docs/
|
||||
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
|
||||
|
||||
# Appearance
|
||||
appearance:
|
||||
theme_default: light
|
||||
|
||||
# SEO
|
||||
marketing:
|
||||
seo:
|
||||
site_type: Person
|
||||
local_business_type: ''
|
||||
org_name: ''
|
||||
description: 'A highly-customizable Hugo link in bio theme powered by Wowchemy website builder.'
|
||||
twitter: 'wowchemy'
|
||||
analytics:
|
||||
google_analytics: ''
|
||||
baidu_tongji: ''
|
||||
verification:
|
||||
google: ''
|
||||
baidu: ''
|
||||
|
||||
# Site header
|
||||
header:
|
||||
navbar:
|
||||
enable: false
|
||||
|
||||
# Site footer
|
||||
footer:
|
||||
copyright:
|
||||
notice: '© {year} Me'
|
||||
|
||||
# Localization
|
||||
locale:
|
||||
date_format: 'Jan 2, 2006'
|
||||
time_format: '3:04 PM'
|
31
starters/link-in-bio/content/_index.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: 'Home'
|
||||
date: 2023-10-24
|
||||
type: landing
|
||||
|
||||
design:
|
||||
background:
|
||||
image:
|
||||
# Add your image background to `assets/media/`.
|
||||
filename: bg-hue.svg
|
||||
|
||||
sections:
|
||||
- block: about.avatar
|
||||
content:
|
||||
# The user's folder name in content/authors/
|
||||
username: admin
|
||||
- block: buttons
|
||||
content:
|
||||
# Need a custom icon?
|
||||
# Add an SVG image to the `assets/media/icons/` folder and reference it in the `icon` field below
|
||||
buttons:
|
||||
- title: Read my latest paper on LLMs
|
||||
icon: arxiv
|
||||
url: https://arxiv.org/abs/2304.01852
|
||||
- title: Watch my new YouTube video to achieve 20x productivity
|
||||
icon: youtube
|
||||
url: https://youtube.com
|
||||
- title: Connect with me on LinkedIn
|
||||
icon: linkedin
|
||||
url: https://linkedin.com
|
||||
---
|
9
starters/link-in-bio/content/authors/_index.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
# To publish author profile pages, remove all the `_build` and `cascade` settings below.
|
||||
_build:
|
||||
render: never
|
||||
cascade:
|
||||
_build:
|
||||
render: never
|
||||
list: always
|
||||
---
|
47
starters/link-in-bio/content/authors/admin/_index.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
# Display name
|
||||
title: 吳健雄
|
||||
|
||||
# Name pronunciation (optional)
|
||||
name_pronunciation: Chien Shiung Wu
|
||||
|
||||
# Full name (for SEO)
|
||||
first_name: Shiung Wu
|
||||
last_name: Chien
|
||||
|
||||
# Status emoji
|
||||
status:
|
||||
icon: ☕️
|
||||
|
||||
# Is this the primary user of the site?
|
||||
superuser: true
|
||||
|
||||
# Role/position/tagline
|
||||
role: Professor of Artificial Intelligence
|
||||
|
||||
# Organizations/Affiliations to show in About widget
|
||||
organizations:
|
||||
- name: Stanford University
|
||||
url: https://www.stanford.edu/
|
||||
|
||||
# Social Networking
|
||||
# Need to use another icon? Simply download the SVG icon to your `assets/media/icons/` folder.
|
||||
social:
|
||||
- icon: send
|
||||
link: 'mailto:your-email@example.com'
|
||||
- icon: twitter
|
||||
link: https://twitter.com/wowchemy
|
||||
label: Follow me on Twitter
|
||||
- icon: google-scholar
|
||||
link: https://scholar.google.com/citations?user=mG4imMEAAAAJ
|
||||
- icon: linkedin
|
||||
link: https://www.linkedin.com/
|
||||
# Link to a PDF of your resume/CV - upload it to `static/uploads/resume.pdf`
|
||||
- icon: cv
|
||||
link: uploads/resume.pdf
|
||||
---
|
||||
|
||||
Chien Shiung Wu is a professor of artificial intelligence at the Stanford AI Lab. Her research interests include
|
||||
distributed robotics, mobile computing and programmable matter. She leads the Robotic Neurobiology group, which develops
|
||||
self-reconfiguring robots, systems of self-organizing robots, and mobile sensor networks.
|
||||
{style="text-align: justify; font-size: 0.8em;"}
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
7
starters/link-in-bio/go.mod
Normal file
|
@ -0,0 +1,7 @@
|
|||
module github.com/wowchemy/wowchemy-hugo-themes/starters/blog
|
||||
|
||||
go 1.19
|
||||
|
||||
require github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.1-0.20231024173257-66e3c7e27eb0
|
||||
|
||||
require github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-tailwind v0.0.0-20231029092337-9b6cb2d6cc15
|
|
@ -0,0 +1,11 @@
|
|||
<script>
|
||||
let bg = document.getElementById('page-bg');
|
||||
bg.style.setProperty('will-change', 'filter', '');
|
||||
let hue = 0;
|
||||
setInterval(
|
||||
function () {
|
||||
hue = (hue + 1) % 360.;
|
||||
// For dark mode, append: invert(1) saturate(2)
|
||||
bg.style.setProperty('filter', 'hue-rotate(' + hue + 'deg)', '');
|
||||
}, (5000 / 360.));
|
||||
</script>
|
|
@ -3,7 +3,7 @@
|
|||
publish = "public"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.108.0"
|
||||
HUGO_VERSION = "0.119.0"
|
||||
HUGO_ENABLEGITINFO = "true"
|
||||
|
||||
[context.production.environment]
|
2
starters/minimal/.github/FUNDING.yml
vendored
|
@ -1,2 +0,0 @@
|
|||
github: gcushen
|
||||
custom: https://wowchemy.com/sponsor/
|
7
starters/minimal/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
|||
# IDEs
|
||||
.idea/
|
||||
|
||||
# Hugo
|
||||
/resources/
|
||||
public/
|
||||
assets/jsconfig.json
|
|
@ -1,30 +0,0 @@
|
|||
# [Hugo Minimal Theme](https://github.com/wowchemy/hugo-minimal-theme)
|
||||
|
||||
[](https://wowchemy.com/hugo-themes/)
|
||||
|
||||
The **Minimal Template** empowers you to easily create a simple one-page site **without any code**, just using **widgets**.
|
||||
|
||||
[](https://wowchemy.com/hugo-themes/)
|
||||
[](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)
|
||||
[](https://twitter.com/wowchemy)
|
||||
|
||||
[Check out the latest demo](https://hugo-minimal-theme.netlify.app/) of what you'll get in less than 60 seconds, or [get inspired by how others are using this template](https://wowchemy.com/creators/).
|
||||
|
||||
The integrated [**Wowchemy**](https://wowchemy.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.
|
||||
|
||||
- 👉 [**Get Started**](https://wowchemy.com/hugo-themes/)
|
||||
- 📚 [View the **documentation**](https://wowchemy.com/docs/)
|
||||
- 💬 [Chat with the **Wowchemy research community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)
|
||||
- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/wowchemy/hugo-academic-cli)
|
||||
- 🐦 Share your new site with the community: [@wowchemy](https://twitter.com/wowchemy) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithWowchemy](https://twitter.com/search?q=%23MadeWithWowchemy&src=typed_query)
|
||||
- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)
|
||||
- 🚀 [Contribute improvements](https://github.com/wowchemy/wowchemy-hugo-themes/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/wowchemy/wowchemy-hugo-themes/issues)
|
||||
- ⬆️ **Updating?** View the [Update Guide](https://wowchemy.com/docs/hugo-tutorials/update/) and [Release Notes](https://github.com/wowchemy/wowchemy-hugo-themes/releases)
|
||||
|
||||
## 💙 We ask you, humbly, to support this open source movement
|
||||
|
||||
Today we ask you to defend the open source independence of the Wowchemy website builder and themes 🐧
|
||||
|
||||
We're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.
|
||||
|
||||
### [️😍 Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 648 KiB |
|
@ -1,34 +0,0 @@
|
|||
// Minimal template style
|
||||
|
||||
// Custom avatar size on homepage
|
||||
.avatar {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: 225px;
|
||||
max-height: 225px;
|
||||
}
|
||||
|
||||
#profile .network-icon {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
ul.network-icon .big-icon {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.network-icon li {
|
||||
@include media-breakpoint-down(sm) {
|
||||
/* Min 48px Lighthouse tap targets on mobile */
|
||||
margin-right: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.dark .portrait-title h3 {
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.dark .portrait-title h2 {
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
# Languages
|
||||
# Create a section for each of your site's languages.
|
||||
# Documentation: https://wowchemy.com/docs/guide/language/
|
||||
|
||||
# Default language
|
||||
en:
|
||||
languageCode: en-us
|
||||
# Uncomment for multi-lingual sites, and move English content into `en` sub-folder.
|
||||
#contentDir: content/en
|
||||
|
||||
# Uncomment the lines below to configure your website in a second language.
|
||||
#zh:
|
||||
# languageCode: zh-Hans
|
||||
# contentDir: content/zh
|
||||
# title: Chinese website title...
|
||||
# params:
|
||||
# description: Site description in Chinese...
|
||||
# menu:
|
||||
# main:
|
||||
# - name: 传
|
||||
# url: '#about'
|
||||
# weight: 1
|
|
@ -1,12 +0,0 @@
|
|||
# Navigation Links
|
||||
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
|
||||
# desired widget in your `content/home/` folder.
|
||||
# The weight parameter defines the order that the links will appear in.
|
||||
|
||||
main:
|
||||
- name: Home
|
||||
url: /
|
||||
weight: 10
|
||||
- name: About
|
||||
url: about/
|
||||
weight: 20
|
|
@ -1,107 +0,0 @@
|
|||
# SITE SETUP
|
||||
# Guide: https://wowchemy.com/docs/getting-started/
|
||||
# Documentation: https://wowchemy.com/docs/
|
||||
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
|
||||
|
||||
# Appearance
|
||||
|
||||
appearance:
|
||||
theme_day:
|
||||
theme_night: minimal
|
||||
font: native
|
||||
font_size: L
|
||||
|
||||
# SEO
|
||||
|
||||
marketing:
|
||||
seo:
|
||||
site_type: Person
|
||||
local_business_type: ''
|
||||
org_name: ''
|
||||
description: 'A highly-customizable Hugo minimal theme powered by Wowchemy website builder.'
|
||||
twitter: 'wowchemy'
|
||||
analytics:
|
||||
google_analytics: ''
|
||||
baidu_tongji: ''
|
||||
google_tag_manager: ''
|
||||
microsoft_clarity: ''
|
||||
verification:
|
||||
google: ''
|
||||
baidu: ''
|
||||
|
||||
# Site header
|
||||
|
||||
header:
|
||||
navbar:
|
||||
enable: false
|
||||
align: r
|
||||
show_logo: false
|
||||
show_language: false
|
||||
show_day_night: true
|
||||
show_search: true
|
||||
highlight_active_link: false
|
||||
|
||||
footer:
|
||||
copyright:
|
||||
notice: '© {year} Me. This work is licensed under {license}'
|
||||
license:
|
||||
enable: true
|
||||
allow_derivatives: false
|
||||
share_alike: true
|
||||
allow_commercial: false
|
||||
|
||||
# Localization
|
||||
|
||||
locale:
|
||||
date_format: 'Jan 2, 2006'
|
||||
time_format: '3:04 PM'
|
||||
|
||||
# Site features
|
||||
|
||||
features:
|
||||
syntax_highlighter:
|
||||
enable: false
|
||||
extra_languages:
|
||||
- r
|
||||
- latex
|
||||
math:
|
||||
enable: false
|
||||
privacy_pack:
|
||||
enable: false
|
||||
repository:
|
||||
url: 'https://github.com/<username>/<repository>'
|
||||
content_dir: content
|
||||
branch: main
|
||||
avatar:
|
||||
gravatar: false
|
||||
shape: circle
|
||||
comment:
|
||||
provider: ''
|
||||
disqus:
|
||||
shortname: ''
|
||||
show_count: true
|
||||
commento:
|
||||
url: ''
|
||||
giscus:
|
||||
repo: ''
|
||||
repo_id: ''
|
||||
category: ''
|
||||
category_id: ''
|
||||
search:
|
||||
provider: ''
|
||||
algolia:
|
||||
app_id: ''
|
||||
api_key: ''
|
||||
index_name: ''
|
||||
show_logo: false
|
||||
map:
|
||||
provider: ''
|
||||
api_key: ''
|
||||
zoom: 15
|
||||
|
||||
extensions:
|
||||
cms:
|
||||
branch: main
|
||||
local_backend: false
|
||||
academicons:
|
||||
enable: false
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
# Leave the homepage title empty to use the site title
|
||||
title:
|
||||
date: 2022-10-24
|
||||
type: landing
|
||||
sections:
|
||||
- block: about.avatar
|
||||
content:
|
||||
# Choose a user profile to display (a folder name within `content/authors/`)
|
||||
username: admin
|
||||
text: |-
|
||||
👋 Hi, there! I'm **Alice**, a machine learning researcher at Netflix.
|
||||
{style="font-size: 1.2rem; background: #FFB76B; background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"}
|
||||
design:
|
||||
background:
|
||||
color: black
|
||||
text_color_light: true
|
||||
image:
|
||||
# Add your image background to `assets/media/`.
|
||||
filename: space.jpg
|
||||
filters:
|
||||
brightness: 0.4
|
||||
size: cover
|
||||
position: center
|
||||
parallax: false
|
||||
css_class: d-flex fullscreen align-items-center
|
||||
---
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
cms_exclude: true
|
||||
|
||||
# To publish author profile pages, remove all of the `_build` and `cascade` settings below.
|
||||
_build:
|
||||
render: never
|
||||
cascade:
|
||||
_build:
|
||||
render: never
|
||||
list: always
|
||||
---
|
|
@ -1,58 +0,0 @@
|
|||
---
|
||||
# Display name
|
||||
title: 吳恩達
|
||||
name_pronunciation: Wu En da
|
||||
|
||||
# Is this the primary user of the site?
|
||||
superuser: true
|
||||
|
||||
# Role/position
|
||||
role: ''
|
||||
|
||||
# Status emoji
|
||||
status:
|
||||
icon: ☕️
|
||||
|
||||
# Organizations/Affiliations
|
||||
#organizations:
|
||||
#- name: 腾讯
|
||||
# url: ""
|
||||
|
||||
# Short bio (displayed in user profile at end of posts)
|
||||
bio: ''
|
||||
|
||||
# Social/Academic Networking
|
||||
# For available icons, see: https://wowchemy.com/docs/getting-started/page-builder/#icons
|
||||
# For an email link, use "fas" icon pack, "envelope" icon, and a link in the
|
||||
# form "mailto:your-email@example.com" or "#contact" for contact widget.
|
||||
social:
|
||||
- icon: envelope
|
||||
icon_pack: fas
|
||||
link: 'mailto:test@example.org'
|
||||
- icon: twitter
|
||||
icon_pack: fab
|
||||
link: https://twitter.com/wowchemy
|
||||
- icon: instagram
|
||||
icon_pack: fab
|
||||
link: https://www.instagram.com/spacex/
|
||||
- icon: weibo
|
||||
icon_pack: fab
|
||||
link: ttps://weibo.com/p/1008088f0ff813c3676d81a04a616ba555af0c/super_index
|
||||
- icon: tiktok
|
||||
icon_pack: fab
|
||||
link: https://www.tiktok.com/@spacex.to.mars
|
||||
- icon: orcid
|
||||
icon_pack: fab
|
||||
link: https://orcid.org/0000-0001-5547-3196
|
||||
- icon: github
|
||||
icon_pack: fab
|
||||
link: https://github.com/gcushen
|
||||
# Link to a PDF of your resume/CV from the About widget.
|
||||
# To enable, copy your resume/CV to `static/uploads/resume.pdf`
|
||||
- icon: file-pdf
|
||||
icon_pack: fas
|
||||
label: View Resume
|
||||
link: uploads/resume.pdf
|
||||
# Enter email to display Gravatar (if Gravatar enabled in Config)
|
||||
#email: ""
|
||||
---
|
Before Width: | Height: | Size: 42 KiB |
|
@ -1,9 +0,0 @@
|
|||
module github.com/wowchemy/hugo-minimal-theme
|
||||
|
||||
go 1.15
|
||||
|
||||
require (
|
||||
github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.0 // indirect
|
||||
github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect
|
||||
github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1-0.20221024214304-ad466232017f
|
||||
)
|
Before Width: | Height: | Size: 276 KiB |