Skip to content

Commit 5de73bb

Browse files
committed
draft version
1 parent 58d724d commit 5de73bb

26 files changed

Lines changed: 158 additions & 184 deletions

File tree

.hugo_build.lock

Whitespace-only changes.

README.md

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1 @@
1-
# [Hugo Research Group Theme](https://github.com/wowchemy/starter-hugo-research-group)
2-
3-
[![Screenshot](preview.png)](https://hugoblox.com/hugo-themes/)
4-
5-
The **Research Group Template** empowers your research group to easily create a beautiful website with a stunning homepage, news, academic publications, events, team profiles, and a contact form.
6-
7-
**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 ⭐⭐⭐⭐⭐
8-
9-
[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/hugo-themes/)
10-
[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)
11-
[![Twitter Follow](https://img.shields.io/twitter/follow/GetResearchDev?label=Follow%20on%20Twitter)](https://twitter.com/wowchemy)
12-
13-
Easily write technical content with plain text Markdown, LaTeX math, diagrams, RMarkdown, or Jupyter, and import publications from BibTeX.
14-
15-
[Check out the latest demo](https://research-group.netlify.app/) of what you'll get in less than 60 seconds, or [view the showcase](https://hugoblox.com/creators/).
16-
17-
The integrated [**Wowchemy**](https://hugoblox.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.
18-
19-
- 👉 [**Get Started**](https://hugoblox.com/hugo-themes/)
20-
- 📚 [View the **documentation**](https://docs.hugoblox.com/)
21-
- 💬 [Chat with the **Wowchemy research community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)
22-
- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/GetRD/academic-file-converter)
23-
- 🐦 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)
24-
- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)
25-
- 🚀 [Contribute improvements](https://github.com/HugoBlox/hugo-blox-builder/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/hugo-blox-builder/issues)
26-
- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/hugo-tutorials/update/) and [Release Notes](https://github.com/HugoBlox/hugo-blox-builder/releases)
27-
28-
## We ask you, humbly, to support this open source movement
29-
30-
Today we ask you to defend the open source independence of the Wowchemy website builder and themes 🐧
31-
32-
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.
33-
34-
### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)
35-
36-
## Demo credits
37-
38-
Please replace the demo images with your own.
39-
40-
- [Female scientist](https://unsplash.com/photos/uVnRa6mOLOM)
41-
- [2 Coders](https://unsplash.com/photos/kwzWjTnDPLk)
42-
- [Cafe](https://unsplash.com/photos/RnDGGnMEOao)
43-
- Blog posts
44-
- https://unsplash.com/photos/AndE50aaHn4
45-
- https://unsplash.com/photos/OYzbqk2y26c
46-
- Avatars
47-
- https://unsplash.com/photos/5yENNRbbat4
48-
- https://unsplash.com/photos/WNoLnJo7tS8
1+
This is a github repository for xxx lab site

assets/media/icon.png

1.66 MB
Loading

assets/media/welcome.jpg

1.64 MB
Loading

config/_default/hugo.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
44
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
55

6-
title: Wowchemy Research Group # Website name
6+
title: CAT # Website name
77
baseURL: 'https://example.com/' # Website URL
88

99
############################
@@ -61,3 +61,10 @@ security:
6161
_merge: deep
6262
sitemap:
6363
_merge: deep
64+
65+
module:
66+
mounts:
67+
- source: content
68+
target: content
69+
- source: content/members
70+
target: content/authors

config/_default/menus.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
# The weight parameter defines the order that the links will appear in.
55

66
main:
7-
- name: Tour
8-
url: tour
7+
- name: Home
8+
url: /
99
weight: 10
1010
- name: News
11-
url: post
11+
url: news
1212
weight: 20
13-
- name: People
14-
url: people
15-
weight: 30
1613
- name: Events
1714
url: event
15+
weight: 30
16+
- name: People
17+
url: people
1818
weight: 40
1919
- name: Publications
2020
url: publication
2121
weight: 50
22-
- name: Contact
23-
url: contact
24-
weight: 60
22+
# - name: Contact
23+
# url: contact
24+
# weight: 60

config/_default/module.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
imports:
88
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms
99
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify
10-
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5
10+
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5

config/_default/params.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77

88
appearance:
99
theme_day: minimal
10-
theme_night:
10+
theme_night: dark
1111
font: native
1212
font_size: L
13+
day_night: true
1314

1415
# SEO
1516

@@ -45,7 +46,7 @@ header:
4546

4647
footer:
4748
copyright:
48-
notice: '© {year} Me. This work is licensed under {license}'
49+
notice: '© {year} Junyu Yin. This work is licensed under {license}'
4950
license:
5051
enable: true
5152
allow_derivatives: false

content/_index.md

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
# Leave the homepage title empty to use the site title
3-
title:
3+
title:
44
date: 2022-10-24
55
type: landing
66

77
sections:
88
- block: hero
99
content:
1010
title: |
11-
Wowchemy
12-
Research Group
11+
Cat
1312
image:
1413
filename: welcome.jpg
1514
text: |
@@ -31,40 +30,40 @@ sections:
3130
tag: ''
3231
offset: 0
3332
order: desc
34-
page_type: post
33+
page_type: news
3534
design:
3635
view: card
3736
columns: '1'
3837

39-
- block: markdown
40-
content:
41-
title:
42-
subtitle: ''
43-
text:
44-
design:
45-
columns: '1'
46-
background:
47-
image:
48-
filename: coders.jpg
49-
filters:
50-
brightness: 1
51-
parallax: false
52-
position: center
53-
size: cover
54-
text_color_light: true
55-
spacing:
56-
padding: ['20px', '0', '20px', '0']
57-
css_class: fullscreen
38+
# - block: markdown
39+
# content:
40+
# title:
41+
# subtitle: ''
42+
# text:
43+
# design:
44+
# columns: '1'
45+
# background:
46+
# image:
47+
# filename: coders.jpg
48+
# filters:
49+
# brightness: 1
50+
# parallax: false
51+
# position: center
52+
# size: cover
53+
# text_color_light: true
54+
# spacing:
55+
# padding: ['20px', '0', '20px', '0']
56+
# css_class: fullscreen
5857

5958
- block: collection
6059
content:
61-
title: Latest Preprints
60+
title: Featured Publications
6261
text: ""
63-
count: 5
62+
count: 7
6463
filters:
6564
folders:
6665
- publication
67-
publication_type: 'article'
66+
featured_only: true
6867
design:
6968
view: citation
7069
columns: '1'

content/authors/admin/_index.md

Lines changed: 0 additions & 77 deletions
This file was deleted.

0 commit comments

Comments
 (0)