diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 00000000..edb60263 --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,64 @@ +{ + "files": [ + "README.md" + ], + "imageSize": 100, + "commit": false, + "commitConvention": "angular", + "contributors": [ + { + "login": "tslmy", + "name": "Ming", + "avatar_url": "https://avatars.githubusercontent.com/u/594058?v=4", + "profile": "http://myli.page", + "contributions": [ + "infra", + "test", + "code" + ] + }, + { + "login": "xubowenhaoren", + "name": "Bowen Xu", + "avatar_url": "https://avatars.githubusercontent.com/u/20229080?v=4", + "profile": "https://github.com/xubowenhaoren", + "contributions": [ + "code" + ] + }, + { + "login": "rtq998916", + "name": "rtq998916", + "avatar_url": "https://avatars.githubusercontent.com/u/92650213?v=4", + "profile": "https://github.com/rtq998916", + "contributions": [ + "code" + ] + }, + { + "login": "floraxue", + "name": "Flora Xue", + "avatar_url": "https://avatars.githubusercontent.com/u/5152856?v=4", + "profile": "http://floraxue.github.io", + "contributions": [ + "code", + "review" + ] + }, + { + "login": "ckt624", + "name": "Kongtao Chen", + "avatar_url": "https://avatars.githubusercontent.com/u/13848196?v=4", + "profile": "https://github.com/ckt624", + "contributions": [ + "code" + ] + } + ], + "contributorsPerLine": 7, + "skipCi": true, + "repoType": "github", + "repoHost": "https://github.com", + "projectName": "yj.zgzg.io", + "projectOwner": "zgzgorg" +} diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..c6f46812 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "env": { + "browser": true, + "es2021": true + }, + "extends": [ + "google" + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 12 + }, + "plugins": [ + "@typescript-eslint" + ], + "rules": {} +} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..d5ec8c27 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,71 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ main ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ main ] + schedule: + - cron: '41 6 * * 5' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] + # Learn more: + # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 diff --git a/.gitignore b/.gitignore index c2397cd9..42072649 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,7 @@ Thumbs.db .Spotlight-V100 .Trashes .idea + +# Intellij +.bundle +vendor diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c6bc0f8e..22a9aa03 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ # pre-commit autoupdate repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.4.0 hooks: - id: check-added-large-files - id: check-case-conflict @@ -15,9 +15,27 @@ repos: - id: check-symlinks - id: check-vcs-permalinks - id: check-yaml + - id: pretty-format-json + args: ['--autofix'] - id: destroyed-symlinks - id: detect-private-key - id: end-of-file-fixer - exclude: _data/comedians.json - id: trailing-whitespace - id: mixed-line-ending +- repo: https://github.com/pre-commit/mirrors-eslint + rev: 'v8.29.0' # Use the sha / tag you want to point at + hooks: + - id: eslint + args: ['--fix'] + exclude: assets/js/github.js + additional_dependencies: + - eslint@8.6.0 + - eslint-config-google@0.7.1 + - babel-eslint@10.1.0 + - "@typescript-eslint/eslint-plugin" + - "@typescript-eslint/parser" + - eslint-loader@1.6.1 +- repo: https://github.com/pre-commit/mirrors-scss-lint + rev: 'v0.59.0' # Use the sha / tag you want to point at + hooks: + - id: scss-lint diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 00000000..be94e6f5 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.2.2 diff --git a/CNAME b/CNAME deleted file mode 100644 index 3495bf2e..00000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -ggtkx.org diff --git a/Gemfile b/Gemfile index 42f4422a..6813d6a8 100644 --- a/Gemfile +++ b/Gemfile @@ -3,5 +3,8 @@ source "https://rubygems.org" gem "jekyll", "~> 4.1" gem "jekyll-environment-variables" gem "jekyll-get-json", "~> 1.0" +gem "jekyll-sitemap" +gem "jekyll-sass-converter", "~> 2.2" +gem "sassc", "~> 2.4" gem "webrick", "~> 1.7" diff --git a/README.md b/README.md index a89f5396..f866e242 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,144 @@ -# Website for the _Chinese Comedy at Silicon Valley_ -[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/ggtkx/ggtkx.github.io/main.svg)](https://results.pre-commit.ci/latest/github/ggtkx/ggtkx.github.io/main) +# 《载歌在谷》志愿者社区官方网站 + +[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-) + +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/c7624c6e88564a0988cb2a0dd82ebd85)](https://www.codacy.com/gh/zgzgorg/yj.zgzg.io/dashboard?utm_source=github.com&utm_medium=referral&utm_content=zgzgorg/yj.zgzg.io&utm_campaign=Badge_Grade) +[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/zgzgorg/yj.zgzg.io/main.svg)](https://results.pre-commit.ci/latest/github/zgzgorg/yj.zgzg.io/main) +[![Netlify Status](https://api.netlify.com/api/v1/badges/6cee17f2-e6ed-45a0-bfb6-dd8234734ebf/deploy-status)](https://app.netlify.com/projects/zgzg-io/deploys) -The website is deployed to [GitHub pages](https://ggtkx.github.io/) and is served at [ggtkx.org](http://ggtkx.org/en/). +为《载歌在谷》志愿者社区,本代码库托管[其官方网站](https://zgzg.io/)的源代码。部署在 [Netlify](https://app.netlify.com/projects/zgzg-io/deploys) 上。 -The Website is statically generated with [Jekyll](https://jekyllrb.com/). To serve it locally, run: +## 贡献指南 + +想要开发这个网站,需要用到以下工具: + +### 在本地渲染该网站 +本网站使用 [Jekyll](https://jekyllrb.com/) 渲染。安装 Jekyll 之后,您可以运行以下命令来在您的电脑上("本地")打开这个网站: ```shell bundle exec jekyll serve ``` +### Pre-commit hooks +本代码库使用 [pre-commit hooks](https://pre-commit.com/) 来自动化一些琐事。(请参见 `.pre-commit-config.yaml` 来熟悉一下都启用了哪些 hooks。) + +Assuming you have `pre-commit` installed (perhaps via `brew install pre-commit`), after cloning this repo to your local machine, you need to execute this command in the root directory of this repo: + +```shell +pre-commit install +``` + +One of the hooks use the [ESLint](https://eslint.org/) tool to check JavaScript files, including enforcing the [Google JavaScript Code Style](https://google.github.io/styleguide/jsguide.html). (See `.eslintrc.json` for the exact config.) As a [npm package](https://www.npmjs.com/), ESLint is installed via npm and specified in the `package.json`. + +## 本代码库结构简介 +根据您想要贡献的内容的类型划分,您可能想要专注于认识不同的部分。 + +### 如果你想要加入、更新内容 +对于内容贡献者来说,最重要的几个文件夹是: +- `pages`:这里存放了每个页面的内容。每个页面都是一个单独的 Markdown 文本文档。在每个文件开头,有个符合 YAML 语法的区块,叫"[front matter](https://jekyllrb.com/docs/front-matter/)"",是会被 Jekyll 特殊处理的"元数据"(metadata)。元数据包括(显示在浏览器标签页卡片上的)标题、布局(layout)名称等。对于布局,大部分的页面都可以使用 `layout: page`(例如[《关于我们》](https://github.com/zgzgorg/yj.zgzg.io/blob/68c1e9f1d7072eda10a20c168512daa451b29a22/pages/about.md?plain=1#L3)、[《常见问题》](https://github.com/zgzgorg/yj.zgzg.io/blob/68c1e9f1d7072eda10a20c168512daa451b29a22/pages/faq.md?plain=1#L3))。 +- `_data`:这里存放了任何需要被 enumerate ("枚举"/"罗列"/"用循环读出")出来的信息。每个文件都是一个 YAML 文件。例如: + - `data.yml`:定义了网站顶栏、底栏应该有哪些链接;我们有哪些伙伴社区、赞助商;春晚板块有哪些节目;歌手赛有哪些节目;云集板块有哪些栏目…… **这是最主要的、最杂的数据文件。** 当某个列表太大时,您也可以选择把它单独拆出来、成为一个单独的文件,就像下面两项这样👇 + - `past-events.yml`:定义了[《往届回顾》](https://www.zgzg.io/past-events/)页面的内容。 + - `trailer-images.yml`:罗列了一些春晚宣传片的拍摄花絮照片。 + +⚠️ **注意**:本代码库虽然包含一个 `images` 文件夹,但它仅应该被用来存放 svg 等源代码格式的图片。若需要存放 jpg、png 等二进制格式的图片,请使用我们自己的 Cloudinary 服务。 + +### 如果你想要开发网站功能 +- `_layouts`:当朴素的 `layout: page` 难以满足您的表达需求时,您可以创建新的 layout,存放于这里。请参见下文"如何自由排版"一节。 +- `_includes`:存放可复用的一些元件。复用可以发生在: + - 几页之间。例如:**赞助商列表**(`_includes/sponsor-section.html`)被复用于歌手赛、游园、春晚等页面底部。 + - 一页之内。例如:**栏目卡片**(`_includes/programme.html`)被复用于首页。 + - 其他可复用的元件之内。例如,上述**栏目卡片**也在**云集节目列表**(`_includes/programmes.html`)里被复用: + image +- `assets`:存放了一些脚本和样式表文件。 + - `assets/css/style.scss`:许多仅对《载歌在谷》有意义的样式(与"对其他网站也有用"相对),都被存放到了这里。如春晚横幅:https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/assets/css/style.scss#L357-L364 + - `assets/js/sidenotes.js`: is a pure-JavaScript plugin that puts `.footnotes` into `#sidebar`, aligning each piece of note at their corresponding superscript, developed by [@tslmy](https://github.com/tslmy). +- `_sass`:这里存放各种对其他网站也有复用意义的样式表。其实,本网站采用的即是他人制作的、现成的主题——由 [Robert Austin](https://github.com/zerostaticthemes) 制作的 [Serif](https://github.com/zerostaticthemes/jekyll-serif-theme)。 + +本网站托管于 [Netlify](https://www.netlify.com/) 之上,域名为 [zgzg.io](https://zgzg.io/)。请参见 [zgzg.link/site-notes](https://zgzg.link/site-notes) 更多信息,包括《载歌在谷》的所有网络服务资源、各代网站特点及制作背景等。(仅限内部访问。) + +#### 如何自由地排版 +当朴素的 `layout: page` 难以满足您的表达需求时,您可以创建新的 layout。 + +假设我们想做一个[《春晚》](https://www.zgzg.io/gala/)页面。通常,我们只需要创建一个 `pages/gala.md` 来提供内容。但是,假设这次我们想要做一些复杂的结构,如图所示: + +![](https://user-images.githubusercontent.com/594058/194150455-816766bc-dd14-4b6f-9f59-4f2136b24fca.jpeg) + +我们首先要做的是,在 `pages/gala.md` 的 front matter 上写明"请用一个叫 gala 的 layout 来渲染这个文档,而不是默认的叫 page 的那个 layout": + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/pages/gala.md?plain=1#L3 + +接下来,我们创建一个 `_layouts/gala.html` 文件。虽然这是一个 HTML 文档,但是我们依然可以写入 front matter。在它的 front matter 里,我们写"请把这个 layout 嵌套在叫 default 的那个 layout 里": + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/_layouts/gala.html#L1-L3 + +接下来的工作,就是常见的"写 HTML"了。其实,我们写的不会是纯粹的 HTML,而是一种叫 [Liquid](https://jekyllrb.com/docs/liquid/) 的"模板语言"(templating language)。模板语言提供一些高阶功能,比如引用一些模块。例如,在现今的 `_layouts/gala.html` 底部,我们就有引用两个模块: + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/_layouts/gala.html#L32-L33 + +这些模块存放于 `_includes/` 文件夹下。例如,上面引用的第一个模块,就在 `_includes/galalist.html`: + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/_includes/galalist.html#L1-L14 + +这个模块很好地体现了 Jekyll 里的"枚举"该怎么用。注意这一行: + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/_includes/galalist.html#L7 + +它说:"请在本网站(`site`)的 `data` 文件夹下,找到叫 `data` 的 YAML 文件,读取其中的 `galalist` 列表。对于其中每个项目(以 `pic` 指代),重复渲染下述内容"。这里所指的"下述内容",即是: + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/_includes/galalist.html#L8-L12 + +它说: + +> 放置一个 `galalist-section` 类型的分区(**div**ision,`div`)。在里面放: +> * 一个图片(`img`),图片链接为 `pic.image`; +> * 在那之后放一个三级标题(`h3`),内容为 `pic.title`; +> * 最后,把 `pic.description` 直接放上去。 + +这里,`galalist-section` 和 `galalist-pic` 是用来排版的。它们所对应的 CSS 规则在这里: + +https://github.com/zgzgorg/yj.zgzg.io/blob/d11235a52359996f299a1bdab37669251c10d21c/assets/css/style.scss#L184-L190 + +(⚠️**注意**:我们采用 [SCSS](https://sass-lang.com/) 作为"样式语言"(styling language)。它是 CSS 的一种超集(superset)。) + +## 样式表编译器说明(Sass/SCSS) + +本项目所有 SCSS 文件均由 Jekyll 内置的 Ruby Sass(sassc)编译。**请勿使用 Dart Sass 新语法**(如 `@use`、`@forward`、`color.adjust()` 等),只使用 `@import`、`lighten()` 等传统语法。 + +- 所有开发、预览、部署请务必使用: + + ```shell + bundle exec jekyll serve + ``` + +- 团队依赖已在 Gemfile 中锁定,确保所有人编译结果一致。 +- 如遇 Dart Sass 相关 warning,说明未用 bundle exec 或本地误装 Dart Sass CLI。 + +## LICENSE +The MIT License (MIT). + +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + + + + + + + +
Ming
Ming

🚇 ⚠️ 💻
Bowen Xu
Bowen Xu

💻
rtq998916
rtq998916

💻
Flora Xue
Flora Xue

💻 👀
Kongtao Chen
Kongtao Chen

💻
+ + -Data organization: -- `_data/comedians.json` stores information about each comedian in this club. It is updated automatically to sync up with a Google Sheet. -- `_data/friends.yml` stores links to our friends. -- `_team/` contains Markdown documents for each member of the core team. + -Other technical details: -- `pull-sheet/` hosts the mechanism that updates `_data/comedians.json` from the roster. -- `sidenotes.js` is a pure-JavaScript plugin that puts `.footnotes` into `#sidebar`, aligning each piece of note at their corresponding superscript. -- This website uses the [Serif](https://github.com/zerostaticthemes/jekyll-serif-theme) theme by [Robert Austin](https://github.com/zerostaticthemes). See LICENSE. +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! diff --git a/_config.yml b/_config.yml index 04f7b8d8..780e0cab 100644 --- a/_config.yml +++ b/_config.yml @@ -1,29 +1,39 @@ baseurl: '/' permalink: pretty -title: '硅谷脱口秀:硅谷地区华人喜剧社团!' +title: '载歌在谷' -google_analytics_id: "G-BMDYGYHPGF" +google_analytics_id: "G-K92JCG018C" homepage: show_call_box: false logo: - mobile: "https://i.imgur.com/7uqTHYY.png" - desktop: "https://i.imgur.com/7uqTHYY.png" + mobile: "/images/zgzglogo.webp" + desktop: "/images/zgzglogo.webp" desktop_height: "36px" seo: - meta_og_title: "硅谷脱口秀" + meta_og_title: "载歌在谷:硅谷地区华人志愿者社区" meta_og_type: "website" - meta_og_url: "https://ggtkx.org" - meta_og_image: "https://i.imgur.com/uXrPUla.png" - meta_og_description: "硅谷脱口秀:硅谷地区汉语喜剧社团!" + meta_og_url: "https://zgzg.io" + meta_og_image: "/images/zgzglogo.webp" + meta_og_description: "载歌在谷:硅谷地区华人志愿者社区" + meta_twitter_card: "summary_large_image" + meta_twitter_site: "@zgzgorg" + meta_twitter_creator: "@zgzgorg" + +collections_dir: collections collections: - comedians: + gala_positions: + tour_positions: + yj_positions: + board: output: true - team: + permalink: /board/:name/ + announce: output: true + permalink: /announce/:name/ sass: indentWidth: 4 @@ -32,6 +42,7 @@ sass: plugins: - jekyll-environment-variables + - jekyll-sitemap exclude: - Gemfile diff --git a/_data/archive-data.yml b/_data/archive-data.yml new file mode 100644 index 00000000..7f799071 --- /dev/null +++ b/_data/archive-data.yml @@ -0,0 +1,174 @@ +archive-2022-galalist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1641757237/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/1_lzsw40.png + title: 关东年 + title-en: Chinese New Year + type: 开场 + type-en: Opening + description: 过年啦!!! 穿新衣,逛庙会,玩手绢儿,舞红绸。 一群可爱的东北小妞们,开心快乐的庆祝着新的一年的到来。各自展示着自己的独特绝活,给庆祝新年带来,更多姿多彩的气氛! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1641972670/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/2_xwhlkl.png + title: 涟漪 + title-en: Wind Over the Ripples + type: 舞蹈 + type-en: Dance + description: 春水浓如染,桃花破青山。春风吹皱江南,天色染透青衫。书生提笔绘纸鸢,假作彩鸾。愿涟漪点点落在姑娘心间。这支舞蹈表现了江南姑娘如水一般的灵动和柔情。水蓝色的裙子摇曳生姿如同湖面涟漪,落在观众心中。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757236/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/3_h9qgbh.png + title: 狮子王 + title-en: Can You Feel the Love Tonight + type: 阿卡贝拉 + type-en: Acappella + description: 拾乐团Find A Cappella 于2021 年10 月在南湾成立,是由一群在音乐中寻找快乐的青年组成的纯人声合唱团。他们将为大家带来一首萨瓦纳风格的情歌 —《狮子王》 插曲“Can You Feel the Love Tonight”. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/4_jhhscx.png + title: 学电台 + title-en: Radio Talk + type: 相声 + type-en: Chinese Traditional Comedy + description: 当今社会是一个信息爆炸的时代, 书籍、电视、网络, 各种宣传媒介充斥的我们的生活。在信息洪流中, 还存在着一种“古老而小众”的方式, 那就是电台。存在于收音机中的电台向来准时, 直接, 节目也是五花八门。这种只闻其声, 不见其人的传播方式伴随着我们成长。在《学电台》这段节目中, 两位演员凭借舞台上的模仿, 便带领大家温习曾经的时光, 领略电台的魅力。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757238/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/5_yrtt8j.png + title: 黎明前出发 + title-en: Let’s Go Before Dawn + type: 乐队 + type-en: Band + description: 太啤寺是一支年轻的4 人乐队,喜爱Indie Rock, Blues,Funk 和喝啤酒。生活周而复始,岁月简单罗列,张扬的日子也许只是黄粱一梦,可它琳琅满目,万紫千红。和爱自由的太啤寺一起,在《黎明前出发》,去完成那些精彩的梦。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/6_nj1uat.png + title: 光亮 + title-en: Light + type: 歌曲 + type-en: Singing + description: 本节目为2021 载歌在谷想唱就唱歌手赛冠军直通春晚节目,由歌手赛冠军黄可一和乐队太啤寺合作完成。歌曲《光亮》温暖而又充满力量,唱出每一个平凡渺小的个体,在命运面前也依旧要坚强、努力,通过呐喊寻找“光亮”,寻找生命的一线生机,绝不放弃希望,做“最无畏的你”。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757237/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/7_w7ox1f.png + title: 奇迹嘉年华 + title-en: Miracle Carnival |魔术Magic Show + type: 魔术 + type-en: Magic Show + description: 你有亲身体验过奇迹吗?你有被人看穿过内心的想法吗?你有惊讶到合不拢嘴过吗?这个春节,Jack 带你遨游神奇的魔术海洋,届时会有空手变物、东西转换、读心术等等各种各样的惊喜,可能前一秒还是空空如也的黑布,下一刻就会出现一杯果汁;硬币在手中如同活过来一般忽隐忽现;随机选中的观众上台,也猜出心中藏最在最深处的秘密,想必票价也是超值了,快来坐上Jack 的奇幻之旅吧! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/8_dcghfo.png + title: 赤焰之缨 + title-en: Red Spirit + type: 舞蹈 + type-en: Dance + description: 此节目是由北京舞蹈学院毕业的施皓柔老师编排而成。她同样毕业于美国米尔斯学院编舞系。编导巧妙地将东西方不同的文化进行融合创新,使东方古典舞和西方的爵士舞摩擦出绚丽的火花。团队中的每个人都很喜欢跳舞。舞者中有工程师,医药科学家,设计师,注册会计师. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757234/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/9_mptq1d.png + title: 天蓝蓝 + title-en: Blue is the Sky + type: 歌曲 + type-en: Singing + description: 《天蓝蓝》是徐沛东作曲,乔羽作词的,为云南文山壮族苗族自治州创作的歌曲。歌曲将侗族大歌伴唱,广西山歌和广西小调等少数民族音乐元素融合,充分体现了壮族、苗族、侗族、彝族等西南少数民族的多样性。歌词唱出了对祖国山河画卷的赞美与对美好生活的殷切祝福。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757234/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/10_plvfh4.png + title: 阳光照耀着塔什库尔干 + title-en: Sunshine over Tashkurgan + type: 器乐二重奏 + type-en: Piano Violin Ensemble + description: 阳光照耀着塔什库尔干是一首极具中国特色民族风情的曲子,由编写梁祝的著名作曲人陈钢先生根据新疆民间音乐改编,描绘了祖国美丽的草原风光和牧民们载歌载舞的喜悦场景。“纵情高歌”展现了辽阔美丽的草原风光和牧民们骑在马上弹琴高歌的情景;“热烈欢舞”充分发挥了复杂多变敏捷灵活的技巧,表现了塔吉克人民欢腾的舞蹈的场面。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641763805/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/11_taicpg.png + title: 街舞奇妙夜 + title-en: Fantasy Night of Street Dance + type: 舞蹈 + type-en: Dance + description: Enjoy Dance Studio (EDS) 是湾区最大的华人街舞工作室,向来以专业严谨的舞蹈教学和多元化的舞蹈风格著称,一直以来都活跃在湾区的各大舞台上, 为观众呈现了很多精彩的舞蹈作品。本次作品受《这!就是街舞》的启发,结合科幻的元素和题材,在展示街舞的魅力与多样性和EDS Family 全新面貌的同时,带领观众进行一次奇幻的体验。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641763804/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/12_vofv4z.png + title: 我爱你中国 + title-en: I Love You China + type: 乐队 + type-en: Band + description: 走起乐队是ZGZG 社区老朋友,从第一届参与至今。走起乐队(Start-Up Band)成立于2013 年,由一群致力于在湾区传播华人音乐的华人工程师,科学界以及音乐专业人士组成。表演风格多样,近年来成功举办过多次专场演唱会,并活跃在“载歌在谷”春晚、斯坦福春晚、硅谷高创汇等湾区知名华人活动平台。今年的“载歌在谷”春晚,走起将为大家带来《我爱你中国》。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779943/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/13_iodvut.png + title: 爱的箴言 + title-en: The Motto of Love + type: 歌曲 + type-en: Singing + description: 一首经典的旋律,诉说和探讨着爱的真谛。由罗大佑作曲,邓丽君演唱的《爱的箴言》曾被无数次演绎过,而每个人心中的答案或许也都有些许不同。在这首歌中,爱是给予,是付出,是陪伴,也是默默守护。但也就像歌中所说,“爱是没有人能了解的的东西,爱是永恒的旋律”。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779944/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/14_auocll.png + title: 阿里郎随想 + title-en: Arirang Caprice + type: 舞蹈 + type-en: Dance + description: Q 舞团演绎的《阿里郎随想》是一支街舞与中国风的融合舞蹈。讲述了一位朝鲜族姑娘对爱情的憧憬和美好生活的向往,也表达了人们对未来太空世界的探索和追求。 Q 舞团由FLAG 等各大科技公司的工程师组成,作为专业篮球宝贝,她们被称为“最会编程的啦啦队”!她们不仅活跃在硅谷社区,更是走向世界。曾在Staples Center 南北加对抗赛,新浪3Ball USA 世界邀请赛,阿泰斯特丁彦雨航中美明星对抗赛等重量级活动中上演精彩演出。她们把优美的舞姿和对美好事物的向往分享给大家。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779944/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/15_ruoyas.png + title: 一生守候 + title-en: To Be with You + type: 舞蹈 + type-en: Dance + description: 舞蹈借由电影《大上海》里的插曲“一生守候”获得的创作灵感。故事讲述的是在民国时期,一对才子佳人的情缘缠绵,难分难舍的感情纠缠。才子终究还是走了,带着爱恨情愁,带着别离愁绪。浮生若梦,无情何欢?雨夜里感受他曾经逗留的背影,体会他指尖留下的余温,她在心底的一声叹息,也渐渐地被淹没在滚滚红尘中。一段难分难舍的感情,一段如诉如泣的纠缠。离与别,男与女,易相爱,难相守。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/17_bjdplg.png + title: 欢乐小才艺 + title-en: Delightful Tricks + type: 魔术 + type-en: Magic Show + description: 演员泽皮是现在就职于湾区科技公司的工程师。也是来自伊利诺伊州的青年魔术师. 本次表演中,魔术师将会在为大家展示如何用生活中常见的物品给大家创造惊喜。届时也会有幸运观众有机会上台和魔术师互动,和魔术师一起完成给剧院的观众的表演。本次是“载歌在谷”春晚开办以来,第一次为大家呈现近景魔术。“载歌在谷” 的节目组、技术组、摄制组的同学,克服种种技术难题,一同为大家在剧院现场呈现一个欢乐的魔术表演。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779901/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/18_xqgbbh.png + title: 春天的芭蕾 + title-en: The Spring Ballet + type: 歌曲 + type-en: Singing + description: 春节是春天的节日,是鲜花点缀, 是欢乐相随。声乐老师王甜甜,四川音乐学院毕业,Frame 乐队主唱,让我们一起聆听由她带来的这首春天的芭蕾,一起来感受春天的气息,迎接春天的来临。谷歌芭蕾舞团也会和着音乐翩翩起舞,带来具有古典主义风格的芭蕾伴舞,美丽而优雅。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/19_ewl2gp.png + title: 琵琶行Song + title-en: of the Lute Player + type: 器乐 + type-en: Instrument + description: 《琵琶行》,是唐代诗人白居易创作的叙事诗。全篇叙述了作者由长安被贬黜到九江期间邂逅了一位技艺高超的琵琶女,用演奏委婉生动地讲述了自己凄惨的身世,引得诸人皆感怀自身境遇而落寞掩泣的故事。此作品由琵琶和舞蹈共同演绎,重现了元和十年浔阳江头的邂逅和千古名句 “同是天涯沦落人,相逢何必曾相识” 中所表达的豁达胸怀。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/20_gnp07n.png + title: 诚 + title-en: Pilgrimage + type: 舞蹈 + type-en: Dance + description: 诚怀着无穷无尽力量的信仰,持着真诚朝拜路上的人儿。 双手高举合十,道声“扎西德勒”。 +archive-2022-singerlist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354054/zgzg-io-website/2022%20singers/Wanli_%E9%BB%84%E4%B8%87%E5%88%A9_ww6wgb.jpg + name: 参赛歌曲 起风了 | 歌手 Wanli Huang + description: 我的中文名是黄万利,英文名Leo。91年出生,今年31岁。来自烤鱼之乡,雾都重庆。爱好是音乐、运动,最不喜欢做的事情是看书。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354065/zgzg-io-website/2022%20singers/2_uvwcen.jpg + name: 参赛歌曲 诗句 | 歌手组合 一男一女 + description: 一男一女是一个男生(Ricky)和一个女生(采薇)临时搭伙的组合,组合如其名随性又可爱,代表了我们对音乐的态度。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354074/zgzg-io-website/2022%20singers/image_19_bqcrag.png + name: 参赛歌曲 末日飞船 | 歌手 Jiaqi Guo + description: 我是湾区的软件工程师(呀,一点惊喜都没有呢)。一个喜欢喝奶茶的吃货,一个喜欢解谜但是解不出又很想放弃的人,也是一个不用喝酒唱歌就能嗨的噪音制造机。人生就活一次,尽管不完美,“我的世界我来浮夸” - 自华晨宇。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354063/zgzg-io-website/2022%20singers/4_ultsxo.jpg + name: 参赛歌曲 Crazy | 乐队 匿名布鲁斯 + description: 我们一支擅长整活儿和活跃气氛的Blues/Funk/R&B即兴乐队。主唱负责说相声和卡祖笛,吉他手分别负责弹簧腿和面无表情,鼓手负责演出时敲断鼓棒,贝斯负责劝人喝奶茶。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354074/zgzg-io-website/2022%20singers/image_20_hl3m95.png + name: 参赛歌曲 For No Reason | 歌手 程天畅 + description: 生活体验派。在成为湾区平平无奇的软件工程师之前,在瑞典和英国游学过两年,也曾亲身经历武汉疫情并在国内远程两年。希望自己的生活丰富且有活力,喜欢运动,喜欢带着相机记录有趣的事件,也喜欢在特别的场景录下应景的歌。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354054/zgzg-io-website/2022%20singers/6_pq2gzz.jpg + name: 参赛歌曲 无人知晓 | 歌手 牛童 + description: 大家好,我是牛大童。我的工作是平时做做research,工作完了有时会唱唱歌;也有的时候一边工作一边唱歌。我参赛最主要的目的是想在自己喜欢做的事上变得越来越强。由于不好好准备上台实在丢不起这人,所以平时练声就格外有动力。希望能让大家在决赛那天感到不虚此行,因为好像不满意也不给退票的。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354222/zgzg-io-website/2022%20singers/7_apq6on.png + name: 参赛歌曲 锦上添花 | 歌手 Allen Liu + description: 第一次参加载歌在谷,和大家切磋切磋。云养狗爱好者,喜欢好看的🚗🚗,喜欢听hiphop,耳机里喜欢放旋律,现场喜欢听炸的。希望和大家度过一个有趣的夏天。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354062/zgzg-io-website/2022%20singers/8_wzrlxu.jpg + name: 参赛歌曲 异乡人 | 歌手 Barry Wu + description: 忙碌的工作之余,感谢音乐,它像是一位多年的老友,陪我走过这些年的喜怒哀乐。我已经准备好,带着这位老友,期待遇见你,我们现场见! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354074/zgzg-io-website/2022%20singers/image_21_nzxsl2.png + name: 参赛歌曲 我 | 歌手 Ailsa Song + description: 我叫Ailsa,是一位刚研究生毕业、刚开始工作的打工人。我喜欢动物、甜食;喜欢形式新颖的有意思的音乐。希望能通过比赛认识更多能一起玩儿音乐的小伙伴。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660354075/zgzg-io-website/2022%20singers/image_22_csrs0y.png + name: 参赛歌曲 要死就死在你手里 | 歌手 Elise Jiang + description: 我叫 Elise,是一名平平无奇的产品经理。平日里喜欢听听摇滚玩玩乐队。当然,也喜欢哼个小曲儿唱的小调儿。期望在短暂的一两首歌之中,可以暂时借走大家的双耳和双手。 +archive-2022-tourslist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089337/zgzg-io-website/2022-游园/书法_zg2rig.jpg + name: 书法 + description: 人和书美意,家和福临门。中秋佳节,一起来写灯笼,书团扇,月圆人团圆。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089316/zgzg-io-website/2022-游园/灯谜2_xrobct.jpg + name: 灯谜 + description: 挖掘传统底蕴,喜迎中秋佳节。看五彩灯笼挂满枝头,猜小小灯谜祝福连连。海上升明月,天涯共此时。(打一地名)。你猜谜底是什么? + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089306/zgzg-io-website/2022-游园/制簪_ads42h.jpg + name: 制簪 + description: 慧心巧思,能夺天工。体验传统手工艺与现代设计互相交融的魅力,跟“簪娘”一起,亲手制作一份中国传统簪子。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089310/zgzg-io-website/2022-游园/灯笼_x4amg8.jpg + name: 灯笼 + description: 做一份花草纸的兔子灯笼,或是用羽毛和玉兔装饰一个提灯?月圆之夜,我们一起点亮它。灯笼与明月,交相辉映。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089305/zgzg-io-website/2022-游园/芝麻开门2_euzewx.png + name: 芝麻开门 + description: 诗眼韵脚长短句,炼字饶舌解谜题。通过阅读芝麻开门。亲近传统诗文,看谁能赢得宝藏! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662095165/zgzg-io-website/2022-游园/照相馆_sc5qj5.png + name: 照相馆 + description: 国色天香四大美人,广寒仙子月下嫦娥。盔甲武士霸气出场,还不快来跟我合照一张!由北加州汉服社倾情献上的四大美人,月宫三人组还有盔甲武士booth!超强NPC阵容,绝对不容错过! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-游园/童趣乐园1_fieihl.jpg + name: 自助游戏区 + description: 大三通,小三通。孔明锁,鲁班锁。迷宫,叠叠乐,飞行棋,七巧板。益智烧脑,全家齐上阵。看谁脑筋最灵活,双手最灵巧。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-游园/姻缘墙_cxeeac.jpg + name: 姻缘墙 + description: 云里寻TA千百度,蓦然回首,那人却在,姻缘庭墙处。未来已来,用AI让你邂逅意中人,从此告别单身! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089318/zgzg-io-website/2022-游园/小舞台_dytitr.jpg + name: 小舞台 + description: 看这边,汉服仙女,裙摆翩翩,惊鸿一瞥。看那边,窈窕谷妹,飒爽英姿,巾帼红颜!歌声悦耳悠扬,绕场三日而未消仍有余音;姻缘千里注定,线牵千里AI帮忙你牵线忙。届时的小舞台,将汇聚各路才艺达人,还有更多好玩的互动游戏,丰富大奖等你来拿! diff --git a/_data/comedians.json b/_data/comedians.json deleted file mode 100644 index 7f46e825..00000000 --- a/_data/comedians.json +++ /dev/null @@ -1,321 +0,0 @@ -[ - { - "title": "Aaron", - "weight": "40", - "image": "https://i.imgur.com/puBEgwz.png", - "description": "白天演程序员 晚上演脱口秀", - "contact": [ - "B站:[船长夫人与程序员](https://m.bilibili.com/space/81350330?from=video&unique_k=IG0kk2)", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34mXYPU3Bs9CASsNbHE4d1d1)" - ] - }, - { - "title": "早恋", - "weight": "32", - "image": "https://i.imgur.com/mSfLTWx.png", - "description": "临渊羡鱼,不如退而结网。", - "contact": [ - "Clubhouse ID: `zaolian`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34kfwyDcL__VQKNpVFw3SLSy)" - ] - }, - { - "title": "龚老板", - "weight": "29", - "image": "https://i.imgur.com/19pCCdn.png", - "description": "一只迷茫的,在观众和自己快乐之间挣扎的,把脱口秀说的像相声,把相声说的像脱口秀的,窜上台的观众。", - "contact": [ - "微信:`gillgong109`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nQYyTkiyPCD4Ajx6iH9lyH)" - ] - }, - { - "title": "Tracy", - "weight": "25", - "image": "https://i.imgur.com/EjEYK7y.png", - "description": "生活=经历 经历=段子 生活=段子", - "contact": [ - "微信:`51423369`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34n9naXejSWgeF8F-zjwkW5V)" - ] - }, - { - "title": "Monkey", - "weight": "21", - "image": "https://i.imgur.com/rIg21xp.png", - "description": "想成为带来欢笑和温暖的人。猫狗双全,差一人组成狗男女。大大方方说:我要找男朋友 (感谢社长让在这谋私利)", - "contact": [ - "Instagram: [bigmonkeyma](https://www.instagram.com/bigmonkeyma/)", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34kTGnvPs-sI21crusfMQLKO)" - ] - }, - { - "title": "方圆", - "weight": "17", - "image": "https://i.imgur.com/VcpirXv.png", - "description": "躁起来呗", - "contact": [ - "Clubhouse ID: `fangyuanj`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34mKV0MUe1tWygBYSLNHATjK)" - ] - }, - { - "title": "黎明洋", - "weight": "16", - "image": "https://i.imgur.com/8kHVjfD.png", - "description": "对表演及语言艺术充满兴趣。擅长吐槽、接茬和谐音梗。", - "contact": [ - "[个人主页](https://myli.page)", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nI_Q__rFRKJ6BqWHEgPKy7)" - ], - "highlights": [ - "[用“拖泥带水”造句:“托尼,带水了吗?”](https://youtu.be/UV0gTHfLdrU)", - "[酒肉穿肠过,化作相思泪。](https://youtu.be/9X5QyQHBpPE)" - ] - }, - { - "title": "邵天宇", - "weight": "15", - "image": "https://i.imgur.com/scQgJSc.png", - "description": "曾经是一名脱口秀表演者", - "contact": [ - "ClubHouse ID: `ericshao`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34kU4T0eL_Y5MzjOkEYdOFvb)" - ] - }, - { - "title": "小企鹅 Lisa", - "weight": "15", - "image": "https://i.imgur.com/IOg9VMj.png", - "description": "我是小企鹅 Lisa,一个疫情在家,憋出了搞笑功力和厨房破坏术的硅谷螺丝钉。希望可以利用这个机会,把工作生活中好玩的,好笑的,我很糗但是讲出来大家能一起乐一乐的事情分享出来,传递笑声和幸运哦~", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nhrZ5Y6uELqJiH7MMPoS4N)" - ] - }, - { - "title": "兔子特特", - "weight": "15", - "image": "https://imgur.com/J3uXn3Gl.png", - "description": "中年少女一枚。在家对娃脱口训在外对你脱口秀!你快乐所以我快乐~~", - "contact": [ - "Clubhouse ID: `rabbit1`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34kapbhDaBG-qFjV5cI8hNor)" - ] - }, - { - "title": "小朱", - "weight": "14", - "image": "https://i.imgur.com/gSysgyB.png", - "description": "大家好我叫小朱,my English name is Sandeep.", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nH-sdYokB_P0iBIf0MV6xG)" - ] - }, - { - "title": "大国", - "weight": "9", - "image": "https://i.imgur.com/LzaNx8t.png", - "description": "硅谷脱口秀,你讲段子的理想港湾!", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nNANUxLPdSBeU--pKX56kE)" - ] - }, - { - "title": "詹姆斯", - "weight": "8", - "image": "https://i.imgur.com/gTRZYM0.png", - "description": "打了疫苗的小胖子~", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34krufKqN4tAfyr6N03wV2AG)" - ] - }, - { - "title": "邵远", - "weight": "8", - "image": "https://i.imgur.com/50YpVbT.png", - "description": "攀岩界最会说相声的数学家。", - "contact": [ - "豆瓣:[灭鼠办梁同志](https://www.douban.com/people/msbltz/)", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34mOqnLKXBeAHISpq2FMpu9z)" - ] - }, - { - "title": "于晓凡", - "weight": "7", - "image": "https://i.imgur.com/NPodfRG.jpg", - "description": "CS Ph.D. 在读,特立独行,兴趣广泛,爱好吃和睡。", - "contact": [ - "[cseweb.ucsd.edu/~x1yu](https://cseweb.ucsd.edu/~x1yu/) —— Ph.D.社交当然是发邮件啦", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34mCtxGtaR1qDan2Z0Fax3ko)" - ] - }, - { - "title": "萌萌", - "weight": "7", - "image": "https://imgur.com/pFidyoJ.png", - "description": "中年妇女。", - "contact": [ - "抖音: `@gongsunmengmeng`", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34l9rKebmdwPUeB6oOMZWh9K)" - ] - }, - { - "title": "王大拿", - "weight": "6", - "image": "https://i.imgur.com/tyc7toZ.png", - "description": "集美貌与智慧于一身" - }, - { - "title": "Timur", - "weight": "5", - "image": "https://i.imgur.com/o0y7QF2.jpg", - "description": "筚路蓝缕,以启山林;吃喝玩乐,醉生梦死。", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34kg_t2ZChitJHYOJDokYSqB)" - ] - }, - { - "title": "丝丝", - "weight": "4", - "image": "https://i.imgur.com/eCMvhmf.png", - "description": "不讲脱口秀的时候我都在帮客户抢房子", - "contact": [ - "小红书:丝丝去哪儿" - ] - }, - { - "title": "拉面", - "weight": "4", - "image": "https://imgur.com/F5p49Uql.png", - "description": "辩论靠段子,脱口秀靠逻辑。", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34mkiZeuz5FyMVX1HvRhOEhn)" - ] - }, - { - "title": "睡不醒", - "weight": "4", - "image": "https://i.imgur.com/ZO4EMEq.png", - "description": "早恋你为什么总针对我喷垃圾话?", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34lOFq1S6g1zTcySvmTKmilC)" - ] - }, - { - "title": "何能能", - "weight": "3", - "image": "https://i.imgur.com/JjRvHRC.png", - "description": "就是很能", - "contact": [ - "社交媒体:直接报我身份证号吧", - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nI6fSKtRGr3Fuu-3EgYq9C)" - ] - }, - { - "title": "尹航", - "weight": "3", - "image": "https://i.imgur.com/AikgWGF.png", - "description": "2012年赴美上山下乡;2014年分配到加州参加工作;2020年开始随硅谷脱口文工团进行慰问演出", - "contact": [ - "知乎:[hang yin](http://www.zhihu.com/people/hang-yin-72-38)" - ] - }, - { - "title": "赵老师", - "weight": "3", - "image": "https://i.imgur.com/mznM741.png", - "description": "我哦,开开心心最重要!" - }, - { - "title": "Chloe", - "weight": "2", - "image": "https://i.imgur.com/B60VWOE.png" - }, - { - "title": "Larry", - "weight": "2", - "image": "https://i.imgur.com/KJJz7Ek.png", - "description": "毁人不倦的中文老湿", - "contact": [ - "[俺的学校](https://www.sanjoselearningcenter.com)" - ] - }, - { - "title": "Yuheng", - "weight": "2", - "image": "https://i.imgur.com/fvnSese.jpg", - "description": "脱口秀疯疯贵妇", - "contact": [ - "Instagram: [hengzairenee](https://www.instagram.com/hengzairenee)" - ] - }, - { - "title": "jinn", - "weight": "1", - "image": "https://i.imgur.com/0p0xsKo.jpg", - "description": "就这么着吧(这句就不用了)", - "contact": [ - "Linkedin: [Jin Liu](https://www.linkedin.com/in/jin-liu-a5b697140)" - ] - }, - { - "title": "平俊哲", - "weight": "1", - "image": "https://i.imgur.com/ss9oyjU.png", - "description": "新加坡英语新加坡汉语都很6" - }, - { - "title": "戴智开", - "weight": "1", - "image": "https://i.imgur.com/M7wFRow.png", - "description": "我在东部有时差,你们先多说说", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34lycgQpv2fHfXef0ZZ1FViH)" - ] - }, - { - "title": "keke", - "weight": "1", - "image": "https://i.imgur.com/UQ0tOnk.png", - "description": "可可爱爱就是我!", - "contact": [ - "Instagram: [ringwring](https://www.instagram.com/ringwring/)" - ] - }, - { - "title": "Sky", - "weight": "1", - "image": "https://i.imgur.com/gUvlV5a.png", - "description": "我家有好多事我真的是不吐不快" - }, - { - "title": "小V", - "weight": "1", - "image": "https://i.imgur.com/M0HNbdR.png", - "description": "喜爱街健请联系我", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nG7prBJPvuSEzf8neANYtP)" - ] - }, - { - "title": "小明", - "weight": "1", - "image": "https://i.imgur.com/hyvlB26.png", - "description": "跟我走吧,天亮就出发", - "contact": [ - "[脱口秀视频](https://www.youtube.com/playlist?list=PL0hg_Q7g-34nGUew6HQb2e9WlfbaNWK9M)" - ] - }, - { - "title": "Whoaaaa", - "weight": "1", - "image": "https://i.imgur.com/Wzr0KQF.png", - "description": "吐槽生活好好玩哦~" - }, - { - "title": "费费", - "weight": "0", - "image": "https://i.imgur.com/oGuVFF7.png", - "description": "还在憋段子的伪脱口秀演员" - } -] \ No newline at end of file diff --git a/_data/data-sponsor.yml b/_data/data-sponsor.yml new file mode 100644 index 00000000..9922405a --- /dev/null +++ b/_data/data-sponsor.yml @@ -0,0 +1,303 @@ +# Sponsor data. + +# Note that a lot of sponsors (elements of `sponsor-levels`) have fields like `elements-div-style-class`, elements-div-style-id`. +# These fields control the HTML style of these sponsors (like logo size, if or not having padding after the divs). +# These are necessary because these styles vary with data. It does not make sense for the HTML template to handle styles that are different +# for each data point. +# For example, we have different styles for different sponsor levels. Diamond sponsors can have larger logo sizes than platinum sponsors, +# so the div's style class is `col-lg-4` for diamond, versus `col-lg-3` for platinum. +# For different events, we also have different div styles even at the same sponsor level . +# E.g. for `media` sponsors, we use 6 columns (`col-6`) in `sponsors-singer`, but 4 columns (`col-4`) in `sponsors`. +# These fields are referenced in sponsor-template.html. + +sponsor-home: + #sponsor-levels: + # - level-name: others + # level-heading: 特别鸣谢 + # elements-div-style-class: col-12 col-md-6 col-lg-4 mb-5 + # sponsor-elements: + # - name: Steve Chen + # description: 你好!我是 Steve Chen,湾区资深房屋贷款顾问。
+ # 从业 16 年,我帮助超过 5500 个家庭实现了他们的购屋梦想。在 Wells Fargo,我连续 15 年荣膺“总统俱乐部”成员,个人贷款总量常年排名全美前三。
+ # 选择我,就是选择安心、省心、高效!
+ # 我和我的团队秉持专业、诚信、高效的服务理念,为客户量身定制最优贷款方案。我们熟悉中英双语文化背景,深谙湾区房地产市场,更能精准把握您的需求。
+ # 为什么选择 Steve Chen?这三个“S”告诉您答案:
+ # • Service 服务:中英文流利,与您无障碍沟通,让整个贷款流程更轻松。
+ # • Speed 效率:快速批核贷款,为您的买房竞价增添竞争力。
+ # • Skills 专业:特别擅长新移民贷款、RSU Income、信用记录不足等复杂案例,帮您找到适合的解决方案。
+ # 我深信,每一位客户都值得最好的服务。无论您是首购族,还是被其他银行拒绝,我都能帮您找到突破口,轻松拿到满意的贷款方案。您的推荐和满意是我最大的动力!
+ # 如果您正在寻找一位专业、靠谱的房贷顾问,我愿成为您购屋路上的强大后盾。
+ # Steve Chen - 助您安心贷款、圆梦湾区!
+ # + # image: https://res.cloudinary.com/zaigezaigu/image/upload/v1705376327/WechatIMG324_isy3ap.jpg + # website: https://homeloans.wellsfargo.com/mortgage/ca/sunnyvale/steve-t-chen + # cell: (408) 805-1888 + # email: Steve.T.Chen@wellsfargo.com + +sponsors-yj-2022: + sponsor-heading: 2022 云集赞助商 + sponsor-levels: + - level-name: sponsor + # HTML div styles (see top of the file for explanations). + elements-div-style-class: col-6 col-lg-4 mb-1 + sponsor-elements: + - name: ARK7 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1656816376/zgzg-io-website/IMG_6273_pqgjs9.gif + website: '' + - name: gmcc + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1656816375/zgzg-io-website/IMG_6274_ob7yba.jpg + website: '' + +sponsors-singer: + sponsor-levels: + - level-name: platinum + level-heading: 白金赞助 + # HTML div styles (see top of the file for explanations). + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: 熊猫外卖 + description: 熊猫外卖于2017年创立于英国诺丁汉,立志成为全球市场领先的在线餐饮生活平台,赋能海外中餐产业,搭建中餐爱好者与中华美食的桥梁。通过不断优化线上服务和行业领先的配送系统,有效将餐厅与每一位顾客紧密相连。 + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718565837/%E7%86%8A%E7%8C%AB%E5%A4%96%E5%8D%96_ffsxml.png + website-name: + website: + - name: Music Tunnel + description: 音乐隧道,Music Tunnel,南湾最广为人知,最专业的娱乐休闲KTV!国内专业团队倾力打造,中英日韩多语种曲库实时更新,老歌新歌一应俱全。顶级音响设备,国内同步的时尚主题式设计装潢,带给您沉浸式的欢唱体验!炎热的夏日,我们就要拿着话筒,吹着空调,奶茶配上盐酥鸡,自在逍遥! + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1687243335/zgzg-io-website/2023%E6%AD%8C%E6%89%8B%E8%B5%9B/music_catrem.png + website-name: + website: + + - level-name: gold + level-heading: 黄金赞助 + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 col-xl-2 mb-1 + sponsor-elements: + - name: Steve Chen + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1705376327/WechatIMG324_isy3ap.jpg + description: 从业15年资深房屋贷款经纪,团队凭借踏实的作风,扎实的专业知识,丰富的沟通技巧,帮助超过5000个家庭在湾区完成购房的梦想,在富国银行全美贷款总量前三,连续14年成为富国银行总统俱乐部成员。 + - name: Valore + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718563566/Screenshot_2024-06-16_at_11.45.01_AM_rqb1ds.png + description: We are San Jose’s luxury trade destination for residential remodeling. Valore represents a wide cross-section of styles and designs making it your ultimate source for tiles, kitchen, bath, and flooring products. + - name: Qbedding + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718563656/Web-Logo_Qbedding_Logo_R_oyxqay.avif + description: 舒适好棉,品质生活。Qbedding成立于2008年纽约皇后区,为美国连锁床品家纺品牌。以行业领先的标准、符合华人审美为特色,打造北美市场最完整的长绒棉家居用品体系。Qbedding每一款产品都为舒适而生, 丰富的使用场景、细腻的品质打磨、温和的审美情调。官网有中文页面,方便在美华人选购,举凡蚕丝被、荞麦枕、决明子枕、长绒棉套件、窗帘等一应俱全。北加州Milpitas实体店为全美第5家分店,位于环球广场,高速880和237交叉口,店址点击这里查询。实体店附近的小伙伴可以进店选购,独享节日优惠,还有惊喜好礼送! + - name: Forest Yoga Club + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1720498826/yuga_new_eegguq.jpg + description: Forest Yoga Club是一家全美连锁的高端女子会所,开设项目有瑜伽、普拉提、空中瑜伽、EMS高科技瘦身、孕期瑜伽、产后修复、皮肤管理、头疗SPA、全美瑜伽联盟教师牌照培训等。 + - name: Highmark Solution Inc. + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1720499380/Screenshot_2024-07-08_at_9.29.26_PM_uczmqv.png + description: Highmark Solution Inc. 是一家专注于数据战略咨询和商业分析的专业公司,主要业务覆盖以下几个方面:为美国各大企业提供数据战略咨询服务,帮助客户制定和实施有效的数据驱动战略,提升业务决策能力和市场竞争力。提供全面的商业分析服务,包括数据挖掘、预测分析、客户细分、市场分析等,帮助企业深度挖掘数据价值,优化运营和提升效益。与Stanford、UCLA、UC Irvine、University of Washington)、加州科技大学等顶尖学府合作,提供商业数据科学和金融工程研究生课程的教学和培训服务,致力于培养下一代数据科学和金融工程领域的专业人才。我们的团队由经验丰富的数据科学家、商业分析师和教育专家组成,致力于为客户提供最前沿的技术和最优质的服务,推动数据驱动决策和创新。联系方式:peterhonglou@ucla.edu, peterlou.wellsfargo@gmail.com + - level-name: media + level-heading: 媒体互宣 + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 col-xl-2 mb-1 + sponsor-elements: + + - level-name: others + level-heading: 其他赞助 + elements-div-style-id: last-row-partners + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 col-xl-2 mb-1 + sponsor-elements: + + +sponsors-tour: + sponsor-levels: + - level-name: platinum + level-heading: 白金赞助 + # HTML div styles (see top of the file for explanations). + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: flyhomes + description: Flyhomes是一家专注在房地产领域的科技公司。完成 C 轮融资 1.5亿美金。不同于传统中介,Flyhomes采取团队作战方式。这和传统上“一个中介从头到尾负责一个客户” 非常不同。Flyhomes将整个买房过程拆解成不同的环节,每个顾客全程都会由一个经验丰富的客户顾问负责,提高了效率的同时也保证了质量。 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659911969/zgzg-io-website/1_fqqqod.png + website-name: www.flyhomes.com + website: https://www.flyhomes.com/mandarin?utm_source=EVENT&utm_medium=sponsorship&utm_content=090322NorCal-EVNT + + - level-name: gold + level-heading: 金牌赞助 + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: 红叶故事 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670217975/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E7%BA%A2%E5%8F%B6%E6%95%85%E4%BA%8B_ykfnpr.png + description: 红叶故事,可以视频聊天的北美婚恋交友App。来红叶朋友圈晒生活,浏览周围单身小伙伴的动态,发送照片,语音和表情。 + + - name: george-xie + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1656789735/xie_dbxfoz.png + description: George Xie 谢晓光 - 加州地产经纪人,Keller Williams TOP 1% Agent,CIPS。凭借着独特的私人银行和贷款金融背景,为客户提供全方面的房产置业资产配置咨询。超高的谈判沟通能力帮助客户拿到最好的价格。 + + - name: LingoAce + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1656783718/lingo_yviz8v.png + description: 暑期宅家也要好好学习呀!LingoAce海外中文线上免费领取1对1试听中文课!听完的小朋友可以领取价值$20的amazon礼卡哟!加微信BayAreaKidFun了解领取福利详情!每周还会解锁湾区最新亲子活动噢! + + - name: Coco Tan + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661481301/zgzg-io-website/logo4_yvmiyq.jpg + description: Coco Tan从业地产18年有余, 一直排名前1%。在全美140万名地产经纪人中, Coco名列由《华尔街日报》评选的前74名。2021年还未结束, 她已卖出了140多套房屋, 几乎每套都成功地打破了湾区的价格记录。她曾连续两年当选华美地产协会 (CAREA) 主席。 + + - name: Steve Chen + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659917448/zgzg-io-website/IMG_6399_ovz1dp.jpg + description: Steve Chen 富国银行房屋贷款经理. Steve 作为资深房屋贷款顾问及销售经理,服务在湾区享有极好口碑。他的专长包括 Relocation Loan,涉及 RSU 收入及海外资产的贷款。 + + - name: Daniel Xi + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659917449/zgzg-io-website/20YH1F-DC_SF_DP_-_Custom_Logo_-_Daniel_Xi_-_SOE-blk-FINAL_1_rbacdp.jpg + description: Top 1% Realtor,经验丰富,谈判技巧高,服务质量一流,无论买房卖房,都很擅长。2021年个人业绩全美排名第157名,交易量1.7亿美元。 + + - name: Ariel Chen + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660113834/zgzg-io-website/20YH1F-DC_SF_DP_-_Custom_Logo_-_Ariel_Chen_-_SOE-blk-FINAL_qr1v6_envmot.jpg + description: 深耕地产行业多年,始终奉行将客户的利益放在第一位。买卖房屋,尤其擅长换房,给每个家庭提供定制化换房策略。 + + - name: Wukong + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662160921/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/Logo2_g1vp7v.png + description: 风靡全球的WuKong在线课堂来到硅谷啦!赶快添加微信公众号【悟空中文】【悟空国际数学】0元领取试听课和学习资料大礼包!3-18岁孩子们的专属福利🎁 + + - level-name: musical_instrument + level-heading: 乐器赞助 + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: Enya智能乐器 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661795574/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/IMG_6517_zfwmhh.jpg + description: 恩雅音乐是一家集乐器、智能音频、音乐文化、为一体的创新型科技音乐公司。超过十年的沉淀让恩雅更好的服务着全球音乐爱好者们。 + + - level-name: venue + level-heading: 场地赞助 + elements-div-style-id: last-row-partners + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: mtv + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1656783910/WechatIMG530_rxjxda.png + description: 音乐隧道,Music Tunnel,南湾最广为人知,最专业的娱乐休闲KTV!国内专业团队倾力打造,中英日韩多语种曲库实时更新,老歌新歌一应俱全。顶级音响设备,国内同步的时尚主题式设计装潢,带给您沉浸式的欢唱体验!炎热的夏日,我们就要拿着话筒,吹着空调,奶茶配上盐酥鸡,自在逍遥! + website-name: www.musictunnelktv.com + website: https://www.musictunnelktv.com/ + + - level-name: food + level-heading: 餐饮赞助 + elements-div-style-id: last-row-partners + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - name: weboba + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1657254451/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/Combined-logo_am3ikv.png + description: 鲜奶和茶的相遇,就像WeBoba和你传承千年的中华茶道,无需奶精掩饰,无需甜腻伪装你第一口就能尝到 Say No to 奶精,Say No to 茶粉茶渣茶你值得,最正统的茶味。 + + - name: panda + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660408149/zgzg-io-website/IMG_6400_lu5gra_ffabex.jpg + description: 现在扫码下载熊猫外卖,即刻领取新人$38红包,开启你的中餐美食之旅吧!熊猫外卖,满足你的中国胃! + + - level-name: media + level-heading: 媒体合作 + elements-div-style-id: last-row-partners + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661720085/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/chihuo_uhom0r.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659916546/zgzg-io-website/2_pes3u4.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659916785/zgzg-io-website/1_bdeoh3.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659916546/zgzg-io-website/sina_ah9fid.jpg + - image: /images/ggtkx.svg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659917435/zgzg-io-website/hy_i9edst.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659916374/zgzg-io-website/%E9%9D%9E%E9%B1%BC%E5%89%A7%E7%A4%BElogo_ls78l0.jpg + - image: /images/cthm.svg + + - level-name: special + level-heading: 特别合作 + elements-div-style-id: last-row-partners + elements-div-style-class: col-6 col-lg-3 mb-1 + sponsor-elements: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660499610/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/image_28_wrksq1.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1660407760/hanfu_m1hieb.png + +sponsors: + sponsor-levels: +# - level-name: diamond +# level-heading: 钻石赞助 +# # HTML div styles (see top of the file for explanations). +# elements-div-style-class: col-6 col-lg-4 mb-1 +# sponsor-elements: +# - name: Coco +# image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636693112/zgzg-io-website/coco_lx8uvq.jpg +# website: https://www.realtorcocotan.com/ +# description: Coco Tan从业地产18年有余, 一直排名前1%。在全美140万名地产经纪人中, Coco名列由《华尔街日报》评选的前74名。2021年还未结束, 她已卖出了140多套房屋, 几乎每套都成功地打破了湾区的价格记录。她曾连续两年当选华美地产协会 (CAREA) 主席。Coco主持的现场直播“周二会谭室”(T.A.N.)为大家带来丰富的地产及相关领域的知识。 +# phone: (408) 829-6053 +# email: CocoTanRE@gmail.com +# other: 微信 CocoTanRealEstate +# - name: Captain Dental +# image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1649530763/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/IMG_5854_ymcjaf.jpg +# website: https://www.captaindental.com/ +# description: Captain Dental由Doris Yao, D.D.S 于2017年创立,我们创立的初衷就是要解决看牙贵,看牙痛,看牙水太深的问题。因此Captain Dental不仅注重高质量的治疗结果,也将顾客的满意与舒适度放在第一位。收费合理,透明也是我们一直以来贯彻的理念。成立至今我们在Google,Yelp上都是5星评分。 +# phone: 408-826-4676 +# email: frontdesk@captaindental.com +# other: Locations in Santa Clara and San Jose + + - level-name: platinum + level-heading: 白金赞助 + elements-div-style-class: col-6 mb-1 + sponsor-elements: + - name: Ivy Zhang & Anna Duan Realty Team + image: /images/ivy_anna.svg + description: Ivy Zhang & Anna Duan 团队是 Coldwell Banker 全职资深 Top 地产经纪团队,是 Top Agent Network 的成员,交易过上百套房屋买卖,得到客户们 Zillow 和 Google 全五星好评。团队资源丰富,能在房屋买卖、贷款、投资、装修、出租、设计等方面提供给客户们全方位的服务和咨询。永远将客户的利益放在首位,根据客户的具体情况、需求和预算,帮助客人制定专属地产投资规划。 + website: + - name: EDS Dance Studio + image: https://imgur.com/Utz6SUg.png + description: Enjoy Dance Studio 成立于 2016 年,是湾区最大的华人街舞工作室。我们的地点遍布南湾、半岛、东湾等地区。EDS 为学生们提供高水平的 k-pop、hip-hop、爵士、现代舞、机械舞、house、locking、高跟鞋爵士等各类课程。特别于今年,我们开始扩展 hip-hop 宝宝班课程的投入和设计,受到家长们的广泛好评。 + - name: Lusso + image: /images/lusso.svg + description: Lusso 成立于 2017 年,由一批有情怀、具有创新精神的建筑、设计行业专业人士创建。Lusso 坐落于矽谷的中心,拥有 12,000 平方尺的展厅。 Lusso 品牌专注于高端全定制橱柜设计、高端欧橡地板和现代欧式瓷砖。 + - name: Yami亚米 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671079564/zgzg-io-website/%E8%B5%9E%E5%8A%A9/d665113a07ce78d72928b0b67a254482_0x0_cekjdb.png + description: Yami亚米是北美最大亚洲商品购物平台,网站于 2013 年 3 月上线,主营最具特色的亚洲商品,涵盖食品、美妆、养生、电器、图书等类别。经过近几年的飞速发展,亚米在北美华人圈建立了良好的品牌形象,成为北美华人线上购物的首选。 + - name: 新东方 | 比邻中文 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671156291/zgzg-io-website/%E8%B5%9E%E5%8A%A9/xdf%E6%AF%94%E9%82%BB_zamwyt.png + description: 新东方教育科技集团,成立于1993年11月16日。是一家集教育培训、教育产品研发、教育服务于一体的大型综合性教育科技集团。公司于2006年在美国纽约证券所上市。比邻中文是新东方教育科技集团旗下专业中文品牌,专注于为3-15岁华裔青少儿提升中文语言素养。基于新东方近30年教研沉淀研发,拥有科学的课程等级划分和完善的课程体系建设,通过口语表达、阅读理解和写作等能力的培养,全面提高孩子的中文能力。 + - name: Moomoo 富途牛牛 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671323321/zgzg-io-website/%E8%B5%9E%E5%8A%A9/moomoo%E7%AB%96%E7%89%88%E4%B8%8A%E5%B8%82%E7%BB%84%E5%90%88%E6%A0%87%E5%BF%97_%E7%94%BB%E6%9D%BF_1_s3ffsi.png + description: Moomoo 是富途牛牛为美国市场专门开发的一站式专业投资平台。不但提供0佣金交易全部美股/ETF/期权、配备低融资利率、创新投资分析技术、一个账户投资全球,还为美国华人开设7*24专业中文服务,提供更友好的中文交易体验。 + + - level-name: gold + level-heading: 金牌赞助 + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 mb-1 + sponsor-elements: + - name: 红叶故事 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670217975/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E7%BA%A2%E5%8F%B6%E6%95%85%E4%BA%8B_ykfnpr.png + description: 红叶故事,可以视频聊天的北美婚恋交友App。来红叶朋友圈晒生活,浏览周围单身小伙伴的动态,发送照片,语音和表情。 + - name: Robinland + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670480775/zgzg-io-website/%E8%B5%9E%E5%8A%A9/Robinland_logo2_ikkfxd.png + description: Robinland 是去中心化金融与传统金融之间的桥梁,旨在降低房地产投资⻔槛,让普罗大众能享受到机构投资者才能获得的收益。 + - name: Steve Chen + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670217971/zgzg-io-website/%E8%B5%9E%E5%8A%A9/Steven_Chen_sq_vmjs70.png + description: Steve Chen 资深房屋贷款经理,富国银行2021年全国购房贷款排名第一。十多年实战经验,精通涉及Relocation,RSU收入及海外资产的贷款。团队专业高效,客户满分评价。欢迎随时致电咨询:Cell:408-805-1888 Email:Steve.T.Chen@wellsfargo.com + - name: Keep + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1673154265/zgzg-io-website/%E8%B5%9E%E5%8A%A9/keep_zgzg_logo_folnui.jpg + description: Keep - 中国排名第一的互联网健身App。致力于打造室内健身教学,户外跑步、骑行等多种类热门健身方式,同时提供科学健康饮食指导、装备购买等一站式运动解决方案。2021年底,Keep旗下运动器械品牌正式入驻北美亚马逊电商平台,将Keep高性价比,更专业的运动器械、运动服饰等带给北美用户。 + - name: 老板电器 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1673154553/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E8%80%81%E6%9D%BF%E7%94%B5%E5%99%A8zgzg_logo_ko4gbq.jpg + description: 老板电器-全球高端厨电领导者,专注于厨房电器行业45年。2015-2023年,老板电器油烟机、灶具连续八年全球销量第一,同时还接连荣获具有“设计界奥斯卡之称”的德国红点奖、IF奖,美国GoodDesign奖等60多项国际设计大奖,拥有超过2000多项的专利技术。老板电器已经进入全球25个国家和地区,畅销全球五大洲。 + + - level-name: food + level-heading: 餐饮赞助 + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 mb-1 + sponsor-elements: + - name: helion 一番膳意 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670480731/zgzg-io-website/%E8%B5%9E%E5%8A%A9/helion%E4%B8%80%E7%95%AA%E8%86%B3%E6%84%8F_vfky2d.png + description: 星级厨师+新鲜食材+先进的“锁鲜技术”= 美味+方便的完美组合!食材讲究,一点也不将就。 + + - level-name: media + level-heading: 媒体合作 + elements-div-style-id: last-row-partners + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 mb-1 + sponsor-elements: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671074829/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E7%A1%85%E6%98%9F%E4%BA%BA_logo_vkv2lk.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671775305/zgzg-io-website/%E8%B5%9E%E5%8A%A9/USChitu_Logo_nbfecq.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670480687/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E5%8C%97%E7%BE%8E%E6%96%B0%E6%B5%AALOGO_je77xx.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671074830/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E9%9D%9E%E9%B1%BC%E5%89%A7%E7%A4%BElogo_zityrq.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670480733/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E7%BE%8E%E5%9B%BD%E4%B8%AD%E6%96%87%E7%94%B5%E5%8F%B0logo_hto07x.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670480625/zgzg-io-website/%E8%B5%9E%E5%8A%A9/Cathy_logo_gu1zx2.png + - image: /images/ggtkx.svg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670217975/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E7%BA%A2%E5%8F%B6%E6%95%85%E4%BA%8B_ykfnpr.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671081216/zgzg-io-website/%E8%B5%9E%E5%8A%A9/%E5%90%83%E8%B4%A7%E5%B0%8F%E5%88%86%E9%98%9F_%E9%80%8F%E6%98%8E%E8%83%8C%E6%99%AF_uojg7o.png + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671775312/zgzg-io-website/%E8%B5%9E%E5%8A%A9/Sinovision_Logo_mc4wjs.png + + - level-name: others + level-heading: 合作伙伴 + elements-div-style-class: col-sm-12 col-md-6 col-lg-4 mb-1 + sponsor-elements: + - name: 528 剧本杀 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1671776441/zgzg-io-website/%E8%B5%9E%E5%8A%A9/528_pic_th9pja.png + description: 528 entertainment SJ是一家“好玩”的店,湾区娱乐的风向标。我们有剧本杀、桌游、泡泡玛特盲盒,手工 workshop(Tufting,流体熊/画,即将上线的奶油胶),可承接公司团建。 + + - name: Uphonest + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670217981/zgzg-io-website/%E8%B5%9E%E5%8A%A9/UpHonest_Capital_pnhiyf.png + description: UpHonest Capital威诚资本成立于2015年,由硅谷知名投资人郭威创立 ,以全球化视角 ,专注投资硅谷和中国的早期优质初创企业。成立至今,机构累计投资超过400家初创企业,30个独角兽项目。 diff --git a/_data/data.yml b/_data/data.yml new file mode 100644 index 00000000..d0946d17 --- /dev/null +++ b/_data/data.yml @@ -0,0 +1,832 @@ +main: + - name: "主页" + url: "/" + - name: "春晚" + url: "/gala/" + - name: "游园会" + url: "/galatour/" + - name: "歌手赛" + url: "/singer/" + - name: "云集社团" + url: "/yj/" + - name: "赞助招商" + url: "/galatour#sponsors-galatour" + - name: "En" + url: "/english/" + icon: true + - name: "中" + url: "/" + icon: true + +gala_ticket_link: "/ticket/gala-ticket" +gala_auidence_guide_link: "https://drive.google.com/file/d/1UR1OrsDq6ijATcHJMQc8YbqgP3plsa9R/view?usp=sharing" +2025s_prelim_ticket_link: "https://zgzg.li/2025s-prelim-ticket" +2025s_ticket_link: "https://zgzg.li/2025s-ticket" +2025s_youth_ticket_link: "https://zgzg.li/2025s-youth-ticket" +home_image_link: "https://res.cloudinary.com/zaigezaigu/image/upload/v1736054382/2025%E8%9B%87%E5%B9%B4%E6%98%A5%E6%99%9A%E7%BD%91%E9%A1%B5banner-1230_pktphi1_ew7yqx.png" +gala_stream_link: "https://www.youtube.com/embed/76kZnnX66ac?si=PyglxFfcxzba_F57" +gala_sponsor_img: "https://res.cloudinary.com/zaigezaigu/image/upload/v1737920698/%E8%B5%9E%E5%8A%A9%E5%95%86%E9%95%BF%E5%9B%BE0126_fgz6dr.jpg" + +special_events: + - name: 《载歌在谷》历年春晚回眸 + image: https://blog.zgzg.io/wp-content/uploads/11581655426.jpg + url: "/past-events/" + description: 《载歌在谷》社区的开山之作。 + - name: 《想唱就唱》歌手赛 + image: https://blog.zgzg.io/wp-content/uploads/IMG_3320.jpg + url: "/past-events/" + description: 《想唱就唱》栏目最靓丽的声音,在这里群星荟萃! + +friends: + - name: 硅谷脱口秀 + image: images/ggtkx.svg + website: https://ggtkx.org + description: 硅谷地区汉语喜剧社团。 + - name: 湾区文化沙龙 + image: images/baccs.svg + website: https://baccs.org/ + description: 一个对话、分享的平台。尽可能地满足我们对这个世界不该磨灭的好奇心。 + +programmes: + - name: 职挂云帆 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670660306/zgzg-io-website/%E4%BA%91%E9%9B%86/%E8%81%8C%E6%8C%82%E4%BA%91%E5%B8%86_sjdst6.jpg + description: 职场访谈类节目。活动内容涵盖,科技,创业,生物医疗,职场软技能等多个方向。 + button-url: https://www.youtube.com/channel/UCG2VTUUT3OWEYcAEi3ELamA + button-text: YouTube 频道 + - name: 云集音乐会 + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1766799004/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/yunji_concert_yacmxf.jpg + description: 致力于打造一个让音乐爱好者共同交流、共同创作、共同成长的梦想孵化器。我们不只关注音乐本身,更关注音乐背后的连接。在这里,无论你是创作者还是演绎者,都能找到志同道合的伙伴。我们定期举办面向公众的中大型Live音乐会,以专业级的策划与制作,为音乐爱好者提供闪耀的展示舞台,更为广大观众呈现一场场由热爱铸就的主题视听盛宴。 + button-url: /ybyf/ + button-text: 往期精选 + - name: 书影婆娑 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670658918/zgzg-io-website/%E4%BA%91%E9%9B%86/shuying_o2xeyt.jpg + description: 我们组织多种书籍电影类文化活动:线下分享会、客厅沙龙、好书共读、P2P图书馆、朗读会、电影马拉松…… + button-url: https://mp.weixin.qq.com/s/Llop7DVDmyHwg_Jycv5w3A + button-text: 了解更多 + - name: 体娱风云 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670659563/zgzg-io-website/%E4%BA%91%E9%9B%86/Screen_Shot_2022-12-10_at_00.05.57_yinbrf.png + description: 我们组织羽毛球、桌游、趣味运动会、聚餐等线上及线下社交娱乐项目。为大家体验到社交的快乐而努力。 + button-url: https://mp.weixin.qq.com/s/udxxeHXpuQP3Nfaq0_JYdg + button-text: 近期活动 + +programmes_chunwan: + - name: 春节晚会 + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1702274633/show_09_kwndgx.jpg + description: 承袭自2015年Google春晚,现面向整个湾区。由200余名主要来自湾区高科技公司的志愿者和演员耗时半年精心打造,是湾区规模最大,观众最多,最具硅谷特色的春节晚会。 + button-url: /gala/ + button-text: 详情 + - name: 歌手赛 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670565567/zgzg-io-website/2022%20singers/DSC02710-2_bwjybv.jpg + description: “载歌在谷”歌手赛,我们在成功的经验上进一步扩大规模,全新规划,为您打造一年一度的,高水准的华人歌手赛。 + button-url: /singer/ + button-text: 详情 + - name: 游园会 + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1702274981/Screenshot_2023-12-10_at_10.06.48_PM_yvytdi.jpg + description: 春联,剪纸,书法,糖画,汉服,诗词,小舞台,为湾区华人朋友们打造一个最具有中华传统的特色游园会。大量摊位免费,尤其适合家庭,让孩子们体验中国文化。 + button-url: /galatour/ + button-text: 详情 + +past-programmes: + - name: 想唱就唱 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670300156/zgzg-io-website/%E4%BA%91%E9%9B%86/%E4%BA%91%E9%9B%86%EF%BC%9A%E6%97%A5%E5%B8%B8%E6%B4%BB%E5%8A%A8/008i3skNgy1gt4hlqastyj30u00u0djk_grdldr.jpg + description: 周末线上K歌 + Live music 小聚会,大家在 Zoom 上一起听歌、唱歌、聊天、以歌会友,共度一个惬意的周日晚上。 + contact: + - "[第二季演唱精彩合辑](https://www.youtube.com/watch?v=E4BjWM-kNXA&list=PLa7OKLszvN9fH1Vsi1ggwPx-h7Yo30bPf&index=9)" + - name: 众说纷云 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670300162/zgzg-io-website/%E4%BA%91%E9%9B%86/%E4%BA%91%E9%9B%86%EF%BC%9A%E6%97%A5%E5%B8%B8%E6%B4%BB%E5%8A%A8/008i3skNgy1gt4hpjeqnpj30u00u0q7g_m0tvnj.jpg + description: 一个自由讨论、辩论的平台。我们欢迎:分享者在这里表达观点、经历,培养逻辑思辨能力;听众在这里收获多元想法,启发灵感。 + contact: + - "[活动录像](https://www.youtube.com/watch?v=rkqZEjEaUrE&list=PLa7OKLszvN9cCMDy7O_RXHEGPfSKZ7b-6)" + - name: 云生活 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670300188/zgzg-io-website/%E4%BA%91%E9%9B%86/%E4%BA%91%E9%9B%86%EF%BC%9A%E6%97%A5%E5%B8%B8%E6%B4%BB%E5%8A%A8/008i3skNgy1gumiy3v19jj60mi0mitb802_pklz1d.jpg + description: 交流你我的生活方式!我们聊宅家好物、买车养车、健康饮食、自学才艺…… + contact: + - "[活动录像](https://www.youtube.com/watch?v=ox7mGP-Niwo&list=PLa7OKLszvN9cVA2sci9rp2PAmz8kR-Bp1)" + +shows: + - name: 我爱你中国 + type: 歌曲 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639291044/zgzg-io-website/2022%E8%8A%82%E7%9B%AE/%E6%88%91%E7%88%B1%E4%BD%A0%E4%B8%AD%E5%9B%BD.png + - name: 一生守候 + type: 舞蹈 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639291259/zgzg-io-website/2022%E8%8A%82%E7%9B%AE/%E4%B8%80%E7%94%9F%E5%AE%88%E5%80%99.jpg + - name: 琵琶行 + type: 器乐 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639292168/zgzg-io-website/2022%E8%8A%82%E7%9B%AE/%E7%90%B5%E7%90%B6%E8%A1%8C_ym0neb.jpg + - name: 阿里郎随想 + type: 舞蹈 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639292181/zgzg-io-website/2022%E8%8A%82%E7%9B%AE/%E9%98%BF%E9%87%8C%E9%83%8E_zrymkw.png + - name: 春天的芭蕾 + type: 歌曲 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639291994/zgzg-io-website/2022%E8%8A%82%E7%9B%AE/%E6%98%A5%E5%A4%A9%E7%9A%84%E8%8A%AD%E8%95%BE.png + +tourslist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089337/zgzg-io-website/2022-游园/书法_zg2rig.jpg + name: 书法 + description: 人和书美意,家和福临门。中秋佳节,一起来写灯笼,书团扇,月圆人团圆。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089316/zgzg-io-website/2022-游园/灯谜2_xrobct.jpg + name: 灯谜 + description: 挖掘传统底蕴,喜迎中秋佳节。看五彩灯笼挂满枝头,猜小小灯谜祝福连连。海上升明月,天涯共此时。(打一地名)。你猜谜底是什么? + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089306/zgzg-io-website/2022-游园/制簪_ads42h.jpg + name: 制簪 + description: 慧心巧思,能夺天工。体验传统手工艺与现代设计互相交融的魅力,跟“簪娘”一起,亲手制作一份中国传统簪子。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089310/zgzg-io-website/2022-游园/灯笼_x4amg8.jpg + name: 灯笼 + description: 做一份花草纸的兔子灯笼,或是用羽毛和玉兔装饰一个提灯?月圆之夜,我们一起点亮它。灯笼与明月,交相辉映。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089305/zgzg-io-website/2022-游园/芝麻开门2_euzewx.png + name: 芝麻开门 + description: 诗眼韵脚长短句,炼字饶舌解谜题。通过阅读芝麻开门。亲近传统诗文,看谁能赢得宝藏! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662095165/zgzg-io-website/2022-游园/照相馆_sc5qj5.png + name: 照相馆 + description: 国色天香四大美人,广寒仙子月下嫦娥。盔甲武士霸气出场,还不快来跟我合照一张!由北加州汉服社倾情献上的四大美人,月宫三人组还有盔甲武士booth!超强NPC阵容,绝对不容错过! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-游园/童趣乐园1_fieihl.jpg + name: 自助游戏区 + description: 大三通,小三通。孔明锁,鲁班锁。迷宫,叠叠乐,飞行棋,七巧板。益智烧脑,全家齐上阵。看谁脑筋最灵活,双手最灵巧。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-游园/姻缘墙_cxeeac.jpg + name: 姻缘墙 + description: 云里寻TA千百度,蓦然回首,那人却在,姻缘庭墙处。未来已来,用AI让你邂逅意中人,从此告别单身! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089318/zgzg-io-website/2022-游园/小舞台_dytitr.jpg + name: 小舞台 + description: 看这边,汉服仙女,裙摆翩翩,惊鸿一瞥。看那边,窈窕谷妹,飒爽英姿,巾帼红颜!歌声悦耳悠扬,绕场三日而未消仍有余音;姻缘千里注定,线牵千里AI帮忙你牵线忙。届时的小舞台,将汇聚各路才艺达人,还有更多好玩的互动游戏,丰富大奖等你来拿! + +tours: + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344398/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0590_g0j2qk.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344397/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0669_dhqx3x.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344398/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0582_cbytfm.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344397/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0704_nheyig.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344397/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0666_qhnhms.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344396/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0550_oaouoy.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344396/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0562_wywuqq.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344396/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0557_txudnd.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639344396/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0573_vqemti.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345932/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A1087_esrhjx.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345932/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03793_toxqzh.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345933/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03822_phncbe.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345933/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03660_ybehx2.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345933/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03840_atcrjs.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345934/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03849_pg610y.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345933/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A1114_n7h6fa.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345934/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03712_o0d5sr.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345934/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03865_irkazr.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345935/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/mmexport1549299447181_njxm5x.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345935/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/IMG_4953_jx6mg0.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345935/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03952_ek8tak.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345936/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A1093_l1j7mb.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345936/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/mmexport1549228081349_ezmv0b.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1639345937/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/DSC03858_kfcvji.jpg + +ybyfs: + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456819/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/jiayi_cropped_btiuey.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456082/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG_3651_czzeqf.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456886/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image3_cropped_zwld2r.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456083/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG_3667_ujf94b.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456082/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG_3629_ghom5v.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/v1754456082/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG_3563_vwl1om.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659930647/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_1_q5itgd.png + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659930647/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_ilhio6.png + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659929796/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04035_egc1te.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659928949/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04040_gzml6b.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659928949/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04065_ei9ziy.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659928949/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04075_zbrygq.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927337/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6397_k7yabg.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927337/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6396_dke1bo.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927337/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6394_ttsk3w.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927337/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6393_d8ocjf.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927337/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6392_d5kznc.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1659927336/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6391_ojwriw.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483597/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6490_ugfbfq.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483593/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6467_obtvtr.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483593/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6478_lb0tva.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483590/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6296_qncbi4.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483591/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6295_lg9xkp.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483591/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6299_fhoxib.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661485274/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC02800_jcfsjr.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661485276/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04773_huiipc.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483590/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6291_f6cfsz.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661569401/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC04786_sxr8i8.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661627837/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_1_ljqehb.png + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661483590/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/IMG-6285_wj25zl.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661569391/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC02834_wl8g7q.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661569917/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC02810_ldd0zl.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661569391/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/DSC02808_e66unk.jpg + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661628242/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_3_b9ssnl.png + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661627837/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_k4rtmn.png + - name: + type: + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1661628241/zgzg-io-website/%E4%BA%91%E9%9B%86/YBYF/image_2_jieokb.png + +past: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439472/%E6%A2%A6%E8%88%9E%E6%95%A6%E7%85%8C_-_Blake_Zhu-18_rbgygk.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439477/ZGZG-ScottYang-200125-4174_zszlo8.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439459/534A3159_resized_pj8eqb.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439471/534A2550_resized_idrghe.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439469/11%E4%B8%8D%E6%9F%93_00027_mmktyk.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439465/Beautiful_Mess_-_Blake_Zhu-7_c5tmep.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439462/2%E8%9D%B6%E6%81%8B%E8%8A%B1_00013_bsjqi5.jpg + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1641439459/534A3347_resized_h0dz98.jpg + +galalist_2023: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054834/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E6%A2%A8%E5%9B%AD%E5%A6%9E%E5%A6%9E-min_t6f7dy.jpg + title: 梨园妞妞 + title-en: Peking Opera Dream + type: 开场 + type-en: Opening + description: 一群可爱的小学员,在梨园努力练习,希望早日圆梦,成为真正优秀的京剧演员。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054840/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E9%86%89%E6%98%A5%E9%A3%8E-min_etvdqh.jpg + title: 醉春风 + title-en: Soaking in the Spring Breeze + type: 舞蹈 + type-en: Dance + description: 醉春意,弄花影,舞花扇, 俏、羞、媚、喜戏春风。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054833/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E6%95%95%E5%8B%92%E6%AD%8C%E9%BA%92%E9%BA%9F-min_oocuir.jpg + title: 敕勒歌·麒麟 + title-en: The Tale of Chi-Le and Qi-Lin + type: 歌曲 + type-en: Singing + description: 敕勒歌歌颂着黄河以北敕勒人热爱家乡和生活的豪情;麒麟呐喊出浩气英风的人生态度。北国草原壮丽富饶的风光遇上象征祥瑞的中华神兽,融合成一种别样的民族风。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054838/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E7%BE%A4%E8%8A%B3%E8%B0%B1-min_rsxxqt.jpg + title: 群芳谱 + title-en: Surpassing Gorgeous + type: 舞蹈 + type-en: Dance + description: 国风有佳人,容华若桃李。戏探窗前人,娇媚动心魂。问,何谓伊人,皆,在我群芳。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054838/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E5%AD%A6%E6%BB%A1%E8%AF%AD-min_no0n1u.jpg + title: 学满语 + title-en: Let’s Go Before Dawn + type: 相声 + type-en: Crosstalk + description: 这段传统相声以幽默诙谐的方式介绍了我国的民族语言满语 也讽刺了少数人不懂装懂,好为人师的不良风气。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054831/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E4%B9%90%E9%98%9F-band-min_l4kpch.jpg + title: 梦里乏味百花香 + title-en: Awoken by Scent of a Flower + type: 乐队 + type-en: Band + description: 一首充满放克节奏和激烈鼓点的Deca Joins cover 《乏善可陈》望点燃舞台气氛,紧随其后的是第二首与京胡演奏家王小朋老师一同并肩作战改编的歌曲《梦里花》来展现一场摇滚乐和中国传统民间音乐的文化碰撞。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054833/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E7%88%B1%E7%9A%84%E7%81%AB%E6%8A%8A%E8%8A%82-min_xlngub.jpg + title: 竹竿舞 - 爱的火把节 + title-en: Fire of Love + type: 舞蹈 + type-en: Dance + description: 傣族舞、国风街舞和彝族舞,用传统和现代的碰撞和融合来表达节日里欢快的气氛和喜悦。希望能把这份喜悦和热情传达给所有人。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054836/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E6%9C%89%E7%94%9F%E4%B9%8B%E5%B9%B4-min_oljjsw.jpg + title: 有生之年 + title-en: As Long as I Live + type: 歌曲 + type-en: Singing + description: 有生之年唱尽人世间最美好的祝福。用最真挚的情,最温暖的爱,祝愿你拥有一切美好。就像歌中说的:“有生之年,愿你没有遗憾;愿你历经时间,仍是少年。” + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054833/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E7%BA%A2%E9%AB%98%E7%B2%B1-min_gxgo4r.jpg + title: 红高粱 + title-en: Red Sorghum + type: 舞蹈 + type-en: Dance + description: 根据电影红高梁改编,用舞蹈讲述在封建社会的一对男女一段如泣如诉的爱情故事。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054835/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E6%BC%94%E5%87%BA%E5%BF%85%E9%A1%BB%E7%BB%A7%E7%BB%AD-min_gxvapf.jpg + title: 演出必须继续 + title-en: The Show Must Go On + type: 小品 + type-en: Short Sketch + description: 东拼西凑的戏班,状况频出的舞台,突然开始的演出,会让简单的三顾茅庐演绎出什么样故事?不管怎么说,演出必须继续!载歌在谷独家出品,陪你爆笑过大年。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054838/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E9%87%8D%E5%90%AF-min_v97zkp.jpg + title: 重启 + title-en: Reset + type: 舞蹈 + type-en: Dance + description: 隔离的生活让很多人逐渐消沉。如果时间能重启,世界没有经历这次浩劫,我们会怎样呢?演员杨青青等。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054833/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E9%AD%94%E6%9C%AF-min_ezh6nx.jpg + title: 世界上最著名的胡萝卜魔术 + title-en: The Best Known Carrot Magic Trick in the World + type: 魔术 + type-en: Magic Show + description: 魔术表演都是迷,节目介绍也是迷。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054836/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E6%9C%9F%E8%AE%B8-min_ofwjhk.jpg + title: 期许 + title-en: Hope + type: 舞蹈 + type-en: Dance + description: 用这一生一世的期许,为和你屋檐下听一场雨。演员杨洋, 王晓明。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1673054838/zgzg-io-website/2023%E6%98%A5%E6%99%9A/%E5%AE%9A%E5%A6%86%E7%85%A7/%E7%A7%80%E5%B1%B1%E6%83%85%E6%AD%8C-min_fj73sa.jpg + title: 新年组曲 + title-en: Chinese New Year Medley + type: 民乐 + type-en: Modern Chinese Orchestra + description: 旋律轻快激昂的《步步高》赋予人们奋发上进的积极意义 ;四川民歌《太阳出来喜洋洋》表达着热烈欢腾、昂扬兴奋之情;《金蛇狂舞》生动地展现喜庆时巨龙舞动、锣鼓喧天的欢腾气氛。 + +galalist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1641757237/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/1_lzsw40.png + title: 关东年 + title-en: Chinese New Year + type: 开场 + type-en: Opening + description: 过年啦!!! 穿新衣,逛庙会,玩手绢儿,舞红绸。 一群可爱的东北小妞们,开心快乐的庆祝着新的一年的到来。各自展示着自己的独特绝活,给庆祝新年带来,更多姿多彩的气氛! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_350/v1641972670/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/2_xwhlkl.png + title: 涟漪 + title-en: Wind Over the Ripples + type: 舞蹈 + type-en: Dance + description: 春水浓如染,桃花破青山。春风吹皱江南,天色染透青衫。书生提笔绘纸鸢,假作彩鸾。愿涟漪点点落在姑娘心间。这支舞蹈表现了江南姑娘如水一般的灵动和柔情。水蓝色的裙子摇曳生姿如同湖面涟漪,落在观众心中。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757236/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/3_h9qgbh.png + title: 狮子王 + title-en: Can You Feel the Love Tonight + type: 阿卡贝拉 + type-en: Acappella + description: 拾乐团Find A Cappella 于2021 年10 月在南湾成立,是由一群在音乐中寻找快乐的青年组成的纯人声合唱团。他们将为大家带来一首萨瓦纳风格的情歌 —《狮子王》 插曲“Can You Feel the Love Tonight”. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/4_jhhscx.png + title: 学电台 + title-en: Radio Talk + type: 相声 + type-en: Chinese Traditional Comedy + description: 当今社会是一个信息爆炸的时代, 书籍、电视、网络, 各种宣传媒介充斥的我们的生活。在信息洪流中, 还存在着一种“古老而小众”的方式, 那就是电台。存在于收音机中的电台向来准时, 直接, 节目也是五花八门。这种只闻其声, 不见其人的传播方式伴随着我们成长。在《学电台》这段节目中, 两位演员凭借舞台上的模仿, 便带领大家温习曾经的时光, 领略电台的魅力。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757238/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/5_yrtt8j.png + title: 黎明前出发 + title-en: Let’s Go Before Dawn + type: 乐队 + type-en: Band + description: 太啤寺是一支年轻的4 人乐队,喜爱Indie Rock, Blues,Funk 和喝啤酒。生活周而复始,岁月简单罗列,张扬的日子也许只是黄粱一梦,可它琳琅满目,万紫千红。和爱自由的太啤寺一起,在《黎明前出发》,去完成那些精彩的梦。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/6_nj1uat.png + title: 光亮 + title-en: Light + type: 歌曲 + type-en: Singing + description: 本节目为2021 载歌在谷想唱就唱歌手赛冠军直通春晚节目,由歌手赛冠军黄可一和乐队太啤寺合作完成。歌曲《光亮》温暖而又充满力量,唱出每一个平凡渺小的个体,在命运面前也依旧要坚强、努力,通过呐喊寻找“光亮”,寻找生命的一线生机,绝不放弃希望,做“最无畏的你”。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757237/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/7_w7ox1f.png + title: 奇迹嘉年华 + title-en: Miracle Carnival |魔术Magic Show + type: 魔术 + type-en: Magic Show + description: 你有亲身体验过奇迹吗?你有被人看穿过内心的想法吗?你有惊讶到合不拢嘴过吗?这个春节,Jack 带你遨游神奇的魔术海洋,届时会有空手变物、东西转换、读心术等等各种各样的惊喜,可能前一秒还是空空如也的黑布,下一刻就会出现一杯果汁;硬币在手中如同活过来一般忽隐忽现;随机选中的观众上台,也猜出心中藏最在最深处的秘密,想必票价也是超值了,快来坐上Jack 的奇幻之旅吧! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/8_dcghfo.png + title: 赤焰之缨 + title-en: Red Spirit + type: 舞蹈 + type-en: Dance + description: 此节目是由北京舞蹈学院毕业的施皓柔老师编排而成。她同样毕业于美国米尔斯学院编舞系。编导巧妙地将东西方不同的文化进行融合创新,使东方古典舞和西方的爵士舞摩擦出绚丽的火花。团队中的每个人都很喜欢跳舞。舞者中有工程师,医药科学家,设计师,注册会计师. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757234/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/9_mptq1d.png + title: 天蓝蓝 + title-en: Blue is the Sky + type: 歌曲 + type-en: Singing + description: 《天蓝蓝》是徐沛东作曲,乔羽作词的,为云南文山壮族苗族自治州创作的歌曲。歌曲将侗族大歌伴唱,广西山歌和广西小调等少数民族音乐元素融合,充分体现了壮族、苗族、侗族、彝族等西南少数民族的多样性。歌词唱出了对祖国山河画卷的赞美与对美好生活的殷切祝福。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641757234/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/10_plvfh4.png + title: 阳光照耀着塔什库尔干 + title-en: Sunshine over Tashkurgan + type: 器乐二重奏 + type-en: Piano Violin Ensemble + description: 阳光照耀着塔什库尔干是一首极具中国特色民族风情的曲子,由编写梁祝的著名作曲人陈钢先生根据新疆民间音乐改编,描绘了祖国美丽的草原风光和牧民们载歌载舞的喜悦场景。“纵情高歌”展现了辽阔美丽的草原风光和牧民们骑在马上弹琴高歌的情景;“热烈欢舞”充分发挥了复杂多变敏捷灵活的技巧,表现了塔吉克人民欢腾的舞蹈的场面。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641763805/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/11_taicpg.png + title: 街舞奇妙夜 + title-en: Fantasy Night of Street Dance + type: 舞蹈 + type-en: Dance + description: Enjoy Dance Studio (EDS) 是湾区最大的华人街舞工作室,向来以专业严谨的舞蹈教学和多元化的舞蹈风格著称,一直以来都活跃在湾区的各大舞台上, 为观众呈现了很多精彩的舞蹈作品。本次作品受《这!就是街舞》的启发,结合科幻的元素和题材,在展示街舞的魅力与多样性和EDS Family 全新面貌的同时,带领观众进行一次奇幻的体验。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641763804/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/12_vofv4z.png + title: 我爱你中国 + title-en: I Love You China + type: 乐队 + type-en: Band + description: 走起乐队是ZGZG 社区老朋友,从第一届参与至今。走起乐队(Start-Up Band)成立于2013 年,由一群致力于在湾区传播华人音乐的华人工程师,科学界以及音乐专业人士组成。表演风格多样,近年来成功举办过多次专场演唱会,并活跃在“载歌在谷”春晚、斯坦福春晚、硅谷高创汇等湾区知名华人活动平台。今年的“载歌在谷”春晚,走起将为大家带来《我爱你中国》。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779943/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/13_iodvut.png + title: 爱的箴言 + title-en: The Motto of Love + type: 歌曲 + type-en: Singing + description: 一首经典的旋律,诉说和探讨着爱的真谛。由罗大佑作曲,邓丽君演唱的《爱的箴言》曾被无数次演绎过,而每个人心中的答案或许也都有些许不同。在这首歌中,爱是给予,是付出,是陪伴,也是默默守护。但也就像歌中所说,“爱是没有人能了解的的东西,爱是永恒的旋律”。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779944/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/14_auocll.png + title: 阿里郎随想 + title-en: Arirang Caprice + type: 舞蹈 + type-en: Dance + description: Q 舞团演绎的《阿里郎随想》是一支街舞与中国风的融合舞蹈。讲述了一位朝鲜族姑娘对爱情的憧憬和美好生活的向往,也表达了人们对未来太空世界的探索和追求。 Q 舞团由FLAG 等各大科技公司的工程师组成,作为专业篮球宝贝,她们被称为“最会编程的啦啦队”!她们不仅活跃在硅谷社区,更是走向世界。曾在Staples Center 南北加对抗赛,新浪3Ball USA 世界邀请赛,阿泰斯特丁彦雨航中美明星对抗赛等重量级活动中上演精彩演出。她们把优美的舞姿和对美好事物的向往分享给大家。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779944/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/15_ruoyas.png + title: 一生守候 + title-en: To Be with You + type: 舞蹈 + type-en: Dance + description: 舞蹈借由电影《大上海》里的插曲“一生守候”获得的创作灵感。故事讲述的是在民国时期,一对才子佳人的情缘缠绵,难分难舍的感情纠缠。才子终究还是走了,带着爱恨情愁,带着别离愁绪。浮生若梦,无情何欢?雨夜里感受他曾经逗留的背影,体会他指尖留下的余温,她在心底的一声叹息,也渐渐地被淹没在滚滚红尘中。一段难分难舍的感情,一段如诉如泣的纠缠。离与别,男与女,易相爱,难相守。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/17_bjdplg.png + title: 欢乐小才艺 + title-en: Delightful Tricks + type: 魔术 + type-en: Magic Show + description: 演员泽皮是现在就职于湾区科技公司的工程师。也是来自伊利诺伊州的青年魔术师. 本次表演中,魔术师将会在为大家展示如何用生活中常见的物品给大家创造惊喜。届时也会有幸运观众有机会上台和魔术师互动,和魔术师一起完成给剧院的观众的表演。本次是“载歌在谷”春晚开办以来,第一次为大家呈现近景魔术。“载歌在谷” 的节目组、技术组、摄制组的同学,克服种种技术难题,一同为大家在剧院现场呈现一个欢乐的魔术表演。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779901/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/18_xqgbbh.png + title: 春天的芭蕾 + title-en: The Spring Ballet + type: 歌曲 + type-en: Singing + description: 春节是春天的节日,是鲜花点缀, 是欢乐相随。声乐老师王甜甜,四川音乐学院毕业,Frame 乐队主唱,让我们一起聆听由她带来的这首春天的芭蕾,一起来感受春天的气息,迎接春天的来临。谷歌芭蕾舞团也会和着音乐翩翩起舞,带来具有古典主义风格的芭蕾伴舞,美丽而优雅。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/19_ewl2gp.png + title: 琵琶行Song + title-en: of the Lute Player + type: 器乐 + type-en: Instrument + description: 《琵琶行》,是唐代诗人白居易创作的叙事诗。全篇叙述了作者由长安被贬黜到九江期间邂逅了一位技艺高超的琵琶女,用演奏委婉生动地讲述了自己凄惨的身世,引得诸人皆感怀自身境遇而落寞掩泣的故事。此作品由琵琶和舞蹈共同演绎,重现了元和十年浔阳江头的邂逅和千古名句 “同是天涯沦落人,相逢何必曾相识” 中所表达的豁达胸怀。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_300/v1641779900/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/20_gnp07n.png + title: 诚 + title-en: Pilgrimage + type: 舞蹈 + type-en: Dance + description: 诚怀着无穷无尽力量的信仰,持着真诚朝拜路上的人儿。 双手高举合十,道声“扎西德勒”。 + +singerlist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/heyuan_ipzzfq.jpg + name: 河源 + description: 我是何源,喜欢唱歌写歌。很开心跟大家分享我的音乐。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/dingmeng_duavrc.jpg + name: 丁梦 + description: 大家好我是丁梦,一个处女座的ENTP。我喜欢各种类型的音乐,是Adam Lambert 12年的老粉。生活中可盐可甜,可攻可受,但本体永远是个失去表情管理的逗逼。我相信,听从内心的声音,脚下就是诗和远方。希望决赛大家都能唱的开心,听的尽兴! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561890/zgzg-io-website/2024singer/hylas_rfnqi9.jpg + name: Hylas + description: 大家好我是Hylas。认识我的朋友都知道我有一只非常可爱的小狗,是我最宝贝的女儿。带着她去各个国家旅行,跑沙滩,走土路,滚草坪,是我最幸福的事。为了她我也换成了远程工作。我从很多年前就开始在网络上唱歌,这个爱好也保持到了现在。通过唱歌App学了很多新歌,也让我接触到了更多的曲风。很开心今年第二次来到这里,希望可以在这个舞台认识更多好朋友,分享音乐 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/zhangjinyuan_zyb1ju.jpg + name: 张金源 + description: 哈喽,我是金源,朋友们喜欢叫我小源哥,平平无奇的科技大厂打工人、即将(估计也没那么快)上线原创单曲的业余唱作人、每年都换新曲风的叛逆歌手,毕竟不唱情歌的摇滚主唱不是好rapper + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/lanlan_kyrgze.jpg + name: 兰兰 + description: 大家好,我是兰兰,是乐队Blankhead的主唱。音乐对我来说,不仅仅是声音的组合,更是一种独特的情感表达方式。它能带给我源源不断的快乐,让我体验到各种丰富的情绪和感受。我特别喜爱那些充满节奏感的歌曲,尤其钟情于欧美风格的音乐。在这些动感的旋律中,我不仅能够与我们乐队的成员尽情地歌唱,还可以与我舞团的朋友们一起随音乐起舞。我希望通过我的歌声,能够传递出快乐和活力,带给大家能量。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/xupeipei_aaxzga.jpg + name: 徐珮珮 + description: 大家好,我是Peipei,一个在浴室里开了无数次演唱会的资深“歌手”,今天终于从浴室走向了舞台。敬请期待🫡 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/arielbao_iwn5wk.jpg + name: Ariel Bao + description: 大家好,我是Ariel。我来自杭州,现在在湾区做软件工程师。大学时期辅修古典声乐,也非常喜欢音乐剧和流行歌曲。非常荣幸参与歌手赛和分享我喜欢的音乐。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/tianlinduan_nxkcj0.jpg + name: Tianlin Duan + description: 哈喽大家好,我是Tianlin。很开心能站上歌手赛决赛的舞台,期待探索更多曲风,享受舞台,开发“无限可能”!决赛见~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/zhouyu_s57msh.jpg + name: 周遇 + description: 一个说唱爱好者,网易云搜索“周遇”可以找到我的主页,欢迎来玩✌️如果你也是哈利波特粉/金庸粉/UIUC毕业生,或许我的主页会有你觉得有趣的东西。业余喜欢和朋友一起做old-school说唱,近几年也有在接触new school的东西。可以说是Eminem、NF、王以太、Jony J和红花会的头号脑残粉🤣。计划不定期扛着音响去街头演出,感兴趣一起的朋友欢迎私信滴滴我(微信:Mg_schizo) + +2025s-youth-singerlist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344655/zgzg-io-website/2025%20singers/Sean_Zhang_Wide_q5u2hy.jpg + name: 张韶杭 + description: 张韶杭(Sean Zhang)就读于 John Muir Elementary School 5th Grade,性格开朗温和,喜欢交朋友,和同学们一起玩。他喜欢唱歌,也擅长钢琴演奏,参加过湾区多次声乐比赛并获得名次。他也喜欢数学和写作,创作fan book小说,日常还参加了篮球训练,并且通过了武术蓝绿带考级。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344035/zgzg-io-website/2025%20singers/Anastasia_Miin_Wide_e1qhnn.jpg + name: Anastasia Miin + description: Anastasia is a 14 years old 9th grade student from California. She began her vocal study at the age 7 and since then has participated in a variety of choirs and solo competitions. Anastasia has placed top 3 at NATS Western Region, first place in NATs SF, VOCE State, USIMC, and other competitions. Besides singing, Anastasia also plays the piano and enjoys Kpop dance classes during her free time. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344166/zgzg-io-website/2025%20singers/Ivy_Deng_Wide_yhulea.jpg + name: Ivy Deng + description: Ivy. 10岁. 酷爱唱歌表演. 旧金山音乐学院预科声乐系新生. 独唱演出代表作:载歌在谷舞台 (2025春季/2024秋季&冬季音乐会, 2024春晚, 2023秋季游园会), 2025 Sunnyvale 新春游园会. 比赛获奖:一等奖 (Charleston, BACH BIMC, NCYT), 二等奖 (American Protégé, 卡内基音乐厅获奖者音乐会). 音乐剧主演Nemo (@Spindrift). + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746345124/zgzg-io-website/2025%20singers/Zhu_Yunxi_Wide_hrkxcm.jpg + name: Isabella Zhu + description: Isabella Zhu (朱芸溪),14岁,喜欢唱歌和音乐剧表演。10岁开始学习声乐演唱,在学校以及多个活动演唱,并参演过多个音乐剧且担任主要角色。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344297/zgzg-io-website/2025%20singers/Julia_Jiang_Wide_ob28fw.jpg + name: Julia Jiang + description: Julia,今年8岁,是一名三年级的小学生。她活泼开朗,热爱唱歌、跳舞和弹钢琴,是个多才多艺的小女孩。舞台是她最喜欢的地方,每一次表演她都全情投入。这次能站上唱歌比赛的决赛舞台,她非常开心,也希望用歌声把快乐带给大家! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344413/zgzg-io-website/2025%20singers/Brian_Xie_Wide_csq7gy.jpg + name: Brian Xie + description: 大家好,我是Brian!从小我就热爱唱歌,因为歌声能带给我无尽的快乐。6岁时,我开始正式学习声乐,8岁时通过了英皇声乐三级考试,并在NATS音乐剧比赛中荣获组别第二名。这些经历让我在学习声乐技巧和探索新曲目时更加充满热情与动力。希望我的歌声也能为大家带来快乐与感动! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344745/zgzg-io-website/2025%20singers/He_Zixi_Wide_ch0lnm.jpg + name: Elena He + description: 大家好!我是5岁的何梓熙 (Elena). 我喜欢迪士尼公主的梦幻世界,也喜欢跟着其他动感旋律摇摆。 我会把幼儿园的操场变成我的舞台,把家里的沙发当成观众席,随时随地大声地歌唱。我希望用我的歌声把美妙的小彩虹送给每个人。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344570/zgzg-io-website/2025%20singers/Rosie_Cao_Wide_q95deb.jpg + name: Rosie Cao + description: My name is Rosie, and I’m born in Atlanta GA and grew up in Michigan. Now I’m 12 years old and a 7th grader in Michigan. I started piano at age 5 and violin at age 7. At the same time, I love singing, both English songs and Chinese songs! I’m grateful that my parents and sister can come with me to support me. I hope you will enjoy my performance! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746345560/zgzg-io-website/2025%20singers/Ginnie_Tang_Wide_okej4g.jpg + name: Ginnie Tang + description: 唐茹婳(Ginnie Tang),15岁,现就读于Independence high九年级。出生于上海,两岁时来到硅谷。茹婳从小喜欢唱歌,曾是福智合唱团和晶晶合唱团成员。作为福智青少年班成员,茹婳经常和伙伴们参与各种慈善活动,例如到老人院为老人们演唱和做饭。她每年都参加学校的音乐剧演出,曾在《Chocolate Factory》中饰演Charlie, 在《Little Mermaid》中饰演Ariel。在今年的全美中文学校联合会举办的中文歌曲比赛中获得青少年组第一名。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344496/zgzg-io-website/2025%20singers/Maureen_Liu_Wide_p8oom6.jpg + name: Maureen Liu + description: 大家好!我是Maureen (晓晓)Liu,一个爱笑爱唱的阳光女孩!我喜欢唱歌,手工和花样游泳,每周训练让我学会了坚持与团队合作。音乐是我的快乐源泉,从儿童歌曲到流行曲,从中文歌到英文歌我都爱哼唱,站在舞台上用歌声传递快乐是我的梦想!希望能把这份热爱唱给你们听,请多多支持哦~谢谢! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746506584/zgzg-io-website/2025%20singers/Zeng_Boxin_Wide_pememy.jpg + name: 曾博欣 + description: 曾博欣,8岁的阳光女孩,带着对世界的好奇心快乐的成长。她是人见人爱的开心果,既能在音乐世界里自在徜徉,用清亮歌喉唱响童真,又像永不停歇的小探险家,总在观察思考中抛出其妙的问题。钢琴键上跃动的指尖、书本里专注的眼神、运动场上不服输的倔强、都在讲述这个女孩用热爱浇灌梦想、在挑战中不断突破自我成长的故事。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746403121/zgzg-io-website/2025%20singers/Wu_Feibi_Wide_i7by8z.jpg + name: 吴飞碧 + description: 吴飞碧(Phoebe Wagner) 是一位来自加州山景城的12岁歌手、词曲创作者和表演者。她一直学习声乐和小提琴,曾与 iSing 女声合唱团以及包括Palo Alto Players 在内的湾区多家剧团合作演出。她参与过多部音乐剧,担任过主演和配角,包括《冰雪奇缘少儿版》、《音乐之声》和《查理和巧克力工厂少儿版》等。Phoebe 也喜欢创作原创音乐和诗歌。她的一首原创诗歌曾获得 Inklings 图书比赛的奖项,她的作品灵感多来自生活中的故事与情感。在舞台之外,她也展现出领导力——曾亲自策划并带领邻里孩子们举办了一周的夏令营,结合创意、组织能力和她对分享的热情。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746343882/zgzg-io-website/2025%20singers/Alicia_Chen_Wide_psca7s.jpg + name: Alicia Chen + description: Hello, my name is Alicia Chen. I'm 14 years old this year and currently in 9th grade. Singing is one of my favorite things to do, and I have been singing since I was 4 years old. My favorite singers are Selena Gomez and Rosé. Some of my other hobbies are dancing and playing the piano. Through this competition, I hope that I can develop lots of new friendships and have a great experience. + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746777682/zgzg-io-website/2025%20singers/Cindy_Peng_Wide_New_lcbgyv.jpg + name: Cindy Peng + description: 我是来自K班的Cindy Peng!从小“我”就是个"小戏精",最爱跟着爸爸的钢琴又唱又跳,把客厅当成“我”的专属舞台。每年最盼望的就是春节,因为可以一遍遍看春晚学表演!3岁开始,“我”就和爸爸在社区图书馆音乐会演出,现在已经是个拥有15次舞台经验的"小演员"啦!这次载歌载谷的舞台,“我”要把这份快乐传递给在场的每一位大朋友小朋友! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747028329/zgzg-io-website/2025%20singers/Astrid_Zhou_Wide_lemubx.jpg + name: 周妙宸 + description: 大家好,我是来自K班的Astrid,周妙宸~我喜欢唱歌,拉丁舞,画画,去年进入天使合唱团跟着小鹿老师学唱歌后,更加喜欢上了表演,合唱让我认识到了很多好朋友,后来还很幸运地参加了小小音乐剧的表演,让我更加享受在舞台上的感觉~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746401881/zgzg-io-website/2025%20singers/Li_Zhengmo_Wide_mcdx36.jpg + name: 李正墨 + description: 李正墨是一个阳光开朗的10岁女孩,歌声大气嘹亮,舞姿灵动。她从小热爱舞台,多次在本地少儿歌唱比赛中取得好成绩,用大气的嗓音演绎喜欢的歌曲。无论是比赛还是表演,她总是自信地展现歌舞才华,用表演传递快乐与活力。未来,她希望站上更大的舞台,用歌声与舞蹈点亮更多人的梦想! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746402215/zgzg-io-website/2025%20singers/Li_Zhengmo_Li_Zhengyan_Wide_qwsyf3.jpg + name: 李正墨&李正言 + description: 李正墨和李正言是一对活泼可爱的10岁双胞胎姐妹,凭借大气嘹亮的嗓音和默契的配合,成为备受喜爱的小歌手组合。她们曾多次登台表演,以纯净的歌声和治愈的笑容打动观众。此次,姐妹俩将深情演唱《是妈妈是女儿》,用童真诠释亲情的温暖,传递母女间最真挚的爱。期待她们用天籁之音,再次带来感动与惊喜! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746402596/zgzg-io-website/2025%20singers/Ella_Tang_Wide_nok3qp.jpg + name: Ella Liu + description: 大家好,我是Ella,我今年四岁。我喜欢唱歌、钢琴、画画、体操,虽然平时有点小害羞,但一唱起歌就开心得不得了!这是我第一次一个人上台,希望大家喜欢我的表演。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746345470/zgzg-io-website/2025%20singers/Mia_Wang_Wide_oyjvjr.jpg + name: Mia Wang + description: 我的名字叫Mia Wang。今年13岁。我喜欢唱歌,特别是中国歌曲,跳kpop和打排球。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1746344973/zgzg-io-website/2025%20singers/Peng_Suxin_Wide_ngtaj8.jpg + name: 彭素心 + description: 我叫彭素心,8岁,是St Andrews Episcopal School小学二年级的学生,从小喜欢就唱歌。在吴树德老师指导的天使合唱团和小朋友们一起把古诗词唱给大家。 + +2025s-prelim-singerlist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633879/zgzg-io-website/2025%20singers/Jin_Muyang_s9szkd.jpg + name: 金沐阳 + description: “您听说过金沐阳么?" ”搞乐队那个?” “不是” “说相声那个?” “不是” “敲代码那个?” “不是” “厚脸皮那个?” “诶对” “去你的吧! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633888/zgzg-io-website/2025%20singers/MaoGeng_sd8rjy.png + name: Maogeng Qin + description: 大家好~我叫茂耕,喜欢唱歌弹钢琴的湾区工程师。音乐是我一生的热爱,希望通过比赛认识更多的朋友,让大家听到我的歌声! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633881/zgzg-io-website/2025%20singers/Dang_Yichi_tdq3ll.jpg + name: Yichi Dang + description: Hi, everyone! My name is Yichi Dang. I'm a jazz vocalist and vocal coach. I've been training my voice professionally for more than 15 years. I basically sing every modern styles, like jazz, blues, rmb, gospel, pop, musical, rock, etc. I've got my bachelor of music in Wuhan conservatory of music, then I've got my master of jazz studies(voice) at University of Hartford. I love singing and hopefully I can have a wonderful singing journey during this competition! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633896/zgzg-io-website/2025%20singers/shago_nhj0x0.jpg + name: 快乐傻狗 + description: _(˚ ᗨ ˚d) 哈喽 我是快乐傻狗! 欢迎来看我唱歌和尬舞哈 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633928/zgzg-io-website/2025%20singers/Yvonne_qfkb3k.jpg + name: Yvonne Leung + description: 嗨,我是Yvonne~从小爱唱爱跳,18岁差点当了练习生,后来选择了出国读书。没想到还能有机会再次站上舞台追梦!谢谢zgzg! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633910/zgzg-io-website/2025%20singers/Ka_Wing_Li_n4mpfh.jpg + name: Ka Wing Li + description: 大家好 我的名字是Kelly Li,早知道可以不用真名參賽 我就用我的別名 炸彈 了。以下就是我的個人介紹:在下炸彈 請多指教! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633899/zgzg-io-website/2025%20singers/Wang_Zhangguanglu_pjcg9n.png + name: 王张广露 + description: Hello大家好,我是一个战略咨询师,在本职工作之外是一个花腔女高音,声乐学习/表演经历近200年,曾获“水立方杯”纽约区冠军等奖项。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633909/zgzg-io-website/2025%20singers/yAya_gewo5z.jpg + name: yAya + description: 唱作歌手,代表作有“银盐的太阳花”, “Outlaw Villain”等。希望能用音乐传递情绪与能量,让大家能享受我的演出。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633901/zgzg-io-website/2025%20singers/Wenyi_Cui_o74wpf.jpg + name: Wenyi Cui + description: Hello 大家好!我叫文懿Wenyi,对这次比赛的期望就是每次都能把想唱的歌唱好,希望我的舞台给大家带来感动和力量~业余我也会做一些创作,出于对应试教育的反思发行过一个rap叫「大做题家」(在某易云)欢迎大家收听! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633904/zgzg-io-website/2025%20singers/Xu_Haiping_n8qkrw.jpg + name: 徐海平 + description: 音乐老师,主持人。为爱来到湾区十年,全心投入家庭。虽多年未唱,梦想未曾远去。愿在”载歌在谷“的舞台重拾热爱,唱响初心。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633904/zgzg-io-website/2025%20singers/Jeffrey_Jiang_glkxci.jpg + name: Jeffrey Jiang + description: 工作时坐在电脑前面,下班后面对着白键和黑键。爱好唱歌和弹琴,也喜欢赛道上引擎的轰鸣。用相机记录身边的美好,也享受在舞台上的每一秒。这就是我,Jeffrey Jiang,aka 姐夫酱 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633907/zgzg-io-website/2025%20singers/Yangyi_Chen_nemmqy.jpg + name: Yangyi Chen + description: 大家好我是洋溢,一名兴趣使然的参赛选手,曾经疯狂地热爱唱歌但现在更多的时候都在爱跳舞。我明白有舞台能上有听众聆听是可遇不可求的幸福之事,所以希望我们见面时大家会喜欢我的表演,屑屑大家! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633919/zgzg-io-website/2025%20singers/PZ_madfgy.jpg + name: 张玉弦 + description: 我是独立音乐人PZ 张玉铉,没签公司,灵感却签了不少。目前在找制作人搭伙搞大事 :D + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633886/zgzg-io-website/2025%20singers/Libby_vvb6qr.jpg + name: Libby + description: 大家好我是Libby。我喜欢静静观察世界,也喜欢用歌声回应它的光与影。声音是我与世界对话的方式,愿你在旋律里遇见我。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633926/zgzg-io-website/2025%20singers/Ariel_Bao_gee79k.png + name: 包容 + description: 大家好,歌手赛我又来啦!音乐对我来说,是快乐星球的通行证,也是表达情绪、寻找自己的方式。希望带给大家的不只旋律,还有我藏在声音里的认真与热爱。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633895/zgzg-io-website/2025%20singers/Dong_Zhiping_bqp1lb.jpg + name: 董治平 + description: 我是董治平,朋友们也经常称呼我治平。我很热爱音乐,也一直在努力做原创。我也刚成立了一支专注原创的独立乐队“底层灵魂”。很感谢这个比赛能有机会让大家听到我的音乐,也能认识更多热爱音乐的朋友们。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633916/zgzg-io-website/2025%20singers/Xu_Qingyang_rhc5xe.jpg + name: 徐清扬 + description: 我叫清扬。我喜欢在舞台上分享自己觉得有趣的歌曲!我唱歌时的motto是Singing is communication =] + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633912/zgzg-io-website/2025%20singers/Yayi_Li_urclyb.jpg + name: 李雅怡 + description: 感恩音乐带给我很多美好,希望自己也可以把这份美好传递出去。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633880/zgzg-io-website/2025%20singers/Catherine_Tran_xlu88l.jpg + name: Catherine Tran + description: Hi everyone! My name is Cat and I am Vietnamese American. This is my first time singing in Chinese. I chose Forever Love by Lee Hom to express my appreciation for Chinese music and culture. Though Chinese is not my native language, I hope to convey its heartfelt message. I apologize in advance if my pronunciation isn’t perfect. Thank you! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633885/zgzg-io-website/2025%20singers/Dai_Yuchen_v5b8nu.jpg + name: Sophia Dai + description: 我爱唱歌,因为在音乐中,任何情绪都可以被接纳,都有属于自己的美好。我希望我的歌声能给你带来力量,冲破生活的枷锁,向着自由勇往直前。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1747633922/zgzg-io-website/2025%20singers/Gu_YY_fxp3bj.jpg + name: 顾亦滢 + description: 哈喽我是顾歪歪~ 喜欢做的事是在客厅一个人抱着猫 玩乐器唱歌 希望我的歌给你带来安慰和力量 比心 + +2025s-singerlist: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/heyuan_ipzzfq.jpg + name: 河源 + description: 我是何源,喜欢唱歌写歌。很开心跟大家分享我的音乐。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/dingmeng_duavrc.jpg + name: 丁梦 + description: 大家好我是丁梦,一个处女座的ENTP。我喜欢各种类型的音乐,是Adam Lambert 12年的老粉。生活中可盐可甜,可攻可受,但本体永远是个失去表情管理的逗逼。我相信,听从内心的声音,脚下就是诗和远方。希望决赛大家都能唱的开心,听的尽兴! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561890/zgzg-io-website/2024singer/hylas_rfnqi9.jpg + name: Hylas + description: 大家好我是Hylas。认识我的朋友都知道我有一只非常可爱的小狗,是我最宝贝的女儿。带着她去各个国家旅行,跑沙滩,走土路,滚草坪,是我最幸福的事。为了她我也换成了远程工作。我从很多年前就开始在网络上唱歌,这个爱好也保持到了现在。通过唱歌App学了很多新歌,也让我接触到了更多的曲风。很开心今年第二次来到这里,希望可以在这个舞台认识更多好朋友,分享音乐 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/zhangjinyuan_zyb1ju.jpg + name: 张金源 + description: 哈喽,我是金源,朋友们喜欢叫我小源哥,平平无奇的科技大厂打工人、即将(估计也没那么快)上线原创单曲的业余唱作人、每年都换新曲风的叛逆歌手,毕竟不唱情歌的摇滚主唱不是好rapper + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/lanlan_kyrgze.jpg + name: 兰兰 + description: 大家好,我是兰兰,是乐队Blankhead的主唱。音乐对我来说,不仅仅是声音的组合,更是一种独特的情感表达方式。它能带给我源源不断的快乐,让我体验到各种丰富的情绪和感受。我特别喜爱那些充满节奏感的歌曲,尤其钟情于欧美风格的音乐。在这些动感的旋律中,我不仅能够与我们乐队的成员尽情地歌唱,还可以与我舞团的朋友们一起随音乐起舞。我希望通过我的歌声,能够传递出快乐和活力,带给大家能量。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/xupeipei_aaxzga.jpg + name: 徐珮珮 + description: 大家好,我是Peipei,一个在浴室里开了无数次演唱会的资深“歌手”,今天终于从浴室走向了舞台。敬请期待🫡 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/arielbao_iwn5wk.jpg + name: Ariel Bao + description: 大家好,我是Ariel。我来自杭州,现在在湾区做软件工程师。大学时期辅修古典声乐,也非常喜欢音乐剧和流行歌曲。非常荣幸参与歌手赛和分享我喜欢的音乐。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561861/zgzg-io-website/2024singer/tianlinduan_nxkcj0.jpg + name: Tianlin Duan + description: 哈喽大家好,我是Tianlin。很开心能站上歌手赛决赛的舞台,期待探索更多曲风,享受舞台,开发“无限可能”!决赛见~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1718561862/zgzg-io-website/2024singer/zhouyu_s57msh.jpg + name: 周遇 + description: 一个说唱爱好者,网易云搜索“周遇”可以找到我的主页,欢迎来玩✌️如果你也是哈利波特粉/金庸粉/UIUC毕业生,或许我的主页会有你觉得有趣的东西。业余喜欢和朋友一起做old-school说唱,近几年也有在接触new school的东西。可以说是Eminem、NF、王以太、Jony J和红花会的头号脑残粉🤣。计划不定期扛着音响去街头演出,感兴趣一起的朋友欢迎私信滴滴我(微信:Mg_schizo) + +galatour_picture_tradition: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089337/zgzg-io-website/2022-游园/书法_zg2rig.jpg + name: 书法 + description: 人和书美意,家和福临门。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670297444/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E4%BC%A0%E7%BB%9F%E6%96%87%E5%8C%96booth/%E5%89%AA%E7%BA%B8_gfpz4h.jpg + name: 剪纸 + description: 窗有簇簇花,心有千千结。自己动手剪一张窗花,为家人朋友带来祝福! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089305/zgzg-io-website/2022-游园/芝麻开门2_euzewx.png + name: 芝麻开门 + description: 诗眼韵脚长短句,炼字饶舌解谜题。根据屏幕提示念完或者背诵完一篇诗文,从而解锁奖励~ + +galatour_picture_handmade: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296423/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%89%8B%E5%B7%A5booth/%E4%B8%AD%E5%9B%BD%E7%BB%93_wxafpf.png + name: 中国结 + description: 中国结是一种手工编织工艺品,它身上所显示的情致与智慧正是汉族古老文明中的一个侧面。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296438/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%89%8B%E5%B7%A5booth/%E7%99%BE%E5%8F%98%E6%B0%94%E7%90%83_hcnqzn.jpg + name: 百变气球 + description: 生活因气球而多彩,童年因气球而美丽。你想要什么小动物?气球姐姐可以变给你噢~想要学习拧气球?也欢迎来一展身手! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296445/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%89%8B%E5%B7%A5booth/%E7%B3%96%E7%94%BB_zqlm6o.jpg + name: 糖画 + description: 亦糖亦画,可观可食,体验非遗,感受甜蜜。来自己动手做一个好看好吃的糖画吧! + +galatour_picture_game: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296431/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%B8%B8%E6%88%8Fbooth/%E5%91%BC%E6%8B%89%E5%9C%88_xjnr6t.jpg + name: 呼啦圈 + description: 圆圆满满呼啦圈,转出幸福和团圆。智能呼啦圈,自动数圈数,快快来比拼~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1670296421/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%B8%B8%E6%88%8Fbooth/%E5%A5%97%E5%9C%88_veusju.png + name: 套圈 + description: 套出惊喜,套出风采。来试试你的准头儿如何! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296440/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%B8%B8%E6%88%8Fbooth/%E4%B8%83%E5%B7%A7%E6%9D%BF_oqtwje.jpg + name: 七巧板 + description: 七巧玲珑心,万律一家亲。看着黑白图片,你能猜到它们是怎么用七巧板拼出来的吗? + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296435/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%B8%B8%E6%88%8Fbooth/%E8%B8%A2%E6%AF%BD%E5%AD%90%E6%AF%94%E8%B5%9B_fdgsth.jpg + name: 踢键子比赛 + description: 让羽毛在脚尖上跳舞,看看谁踢得更高更多更强~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296429/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E6%B8%B8%E6%88%8Fbooth/%E7%94%B2%E9%AA%A8%E6%96%87_j0fphl.jpg + name: 甲骨文 + description: 走进古老文字,领略象形之美。你能猜到卡片上的图形是现代的哪个汉字吗? + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-%E6%B8%B8%E5%9B%AD/%E7%AB%A5%E8%B6%A3%E4%B9%90%E5%9B%AD1_fieihl.jpg + name: 自助游戏区 + description: 大三通,小三通。孔明锁,鲁班锁。迷宫,叠叠乐,飞行棋,七巧板。益智烧脑,全家齐上阵。看谁脑筋最灵活,双手最灵巧。 + +galatour_picture_interactive: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089303/zgzg-io-website/2022-%E6%B8%B8%E5%9B%AD/%E5%A7%BB%E7%BC%98%E5%A2%99_cxeeac.jpg + name: 姻缘墙 + description: 云里寻TA千百度,蓦然回首,那人却在,姻缘庭墙处。未来已来,用AI让你邂逅意中人,从此告别单身! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662095165/zgzg-io-website/2022-%E6%B8%B8%E5%9B%AD/%E7%85%A7%E7%9B%B8%E9%A6%86_sc5qj5.png + name: 照相馆 + description: 儒风翩翩公子,长裙纤纤闺秀。使用提供的道具,美美地拍摄一张爱意满满的全家福吧~ + - image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1662089318/zgzg-io-website/2022-%E6%B8%B8%E5%9B%AD/%E5%B0%8F%E8%88%9E%E5%8F%B0_dytitr.jpg + name: 小舞台 + description: 小舞台将汇聚各路才艺达人,还有更多好玩的互动游戏,丰富大奖等你来拿! + +galatour_picture_child: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296449/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E7%AB%A5%E8%B6%A3%E4%B9%90%E5%9B%AD/%E7%BB%98%E8%84%B8_prvzbe.jpg + name: 画脸 + description: 新春处处显神彩,画脸喜迎新春乐!画脸是小朋友的最爱,口罩遮住了我们笑容,遮不住我们对美好的追求! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1639344396/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0550_oaouoy.jpg + name: 大嘴迎新年 + description: 大嘴装满福禄寿,画笔传神显生辉。在准备好的模版里 进行艺术创作 张开嘴巴里面到底有什么?全凭小朋友的想象力。 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670296447/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%9C%B0%E5%9B%BE/%E7%AB%A5%E8%B6%A3%E4%B9%90%E5%9B%AD/%E7%94%BB%E9%BE%99%E7%82%B9%E7%9D%9B_ekbnpt.jpg + name: 画龙点睛 + description: 龙兴阳动乾坤晓,龙之神“彩”由你填!一条长长的巨龙,等你为它穿上七彩的衣裳! + +galatour_picture_volunteer: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1636003206/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E4%B8%BB%E6%8C%81%E4%BA%BA_3_huvgsq.png + name: 主持人 + description: 1-2 人, 场面由你掌控 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1670294554/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E5%85%B3%E4%BA%8E%E6%98%A5%E8%8A%82%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%BF%97%E6%84%BF%E8%80%85%E5%9B%A2%E9%98%9F/%E7%AD%96%E5%88%92%E7%BB%84_qtysjg.jpg + name: 策划组 + description: 2-3人, 舞台整体策划 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670294568/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E5%85%B3%E4%BA%8E%E6%98%A5%E8%8A%82%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%BF%97%E6%84%BF%E8%80%85%E5%9B%A2%E9%98%9F/%E8%8A%82%E7%9B%AE%E7%BB%84_eacumw.jpg + name: 节目组 + description: 对接单个节目面试与排练 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670294558/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E5%85%B3%E4%BA%8E%E6%98%A5%E8%8A%82%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%BF%97%E6%84%BF%E8%80%85%E5%9B%A2%E9%98%9F/%E5%9C%BA%E5%8A%A1%E7%BB%84_qr3zbd.png + name: 场务组 + description: 设备组织管理 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1639344397/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/534A0666_qhnhms.jpg + name: 游戏组 + description: 现场游戏设计组织 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/q_auto:low/v1670294564/zgzg-io-website/2023-%E6%98%A5%E6%99%9A%E6%B8%B8%E5%9B%AD/%E5%85%B3%E4%BA%8E%E6%98%A5%E8%8A%82%E6%B8%B8%E5%9B%AD/%E6%B8%B8%E5%9B%AD%E5%BF%97%E6%84%BF%E8%80%85%E5%9B%A2%E9%98%9F/%E9%9F%B3%E5%93%8D%E7%BB%84_svtc1k.jpg + name: 音响组 + description: 音响技术支持 + +galatour_picture_type: + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1641757238/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/5_yrtt8j.png + name: 歌唱节目 + description: ·流行 ·民谣 ·美声 ·Rap·及你所喜欢的任何音乐类型 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/8_dcghfo.png + name: 传统文化节目 + description: ·戏曲 ·杂技 ·武术 ·武术·舞龙舞狮 ·汉服表演 ·少数民族表演 ·民乐表演 ·太极拳太极剑·踩高跷 ·划旱船 ·任何和传统文化相关的节目 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1641779944/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/15_ruoyas.png + name: 舞蹈节目 + description: ·古典舞 ·现代舞 ·民族舞 ·街舞 ·及你想展现的任何舞蹈类型 + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1641757237/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/7_w7ox1f.png + name: 魔术节目 + description: 纸牌魔术?隔空取物?还是心灵透视术?小编蹲一个湾区魔术周杰伦! + - image: https://res.cloudinary.com/zaigezaigu/image/upload/v1641757235/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/6_nj1uat.png + name: 属于你的X-Part + description: 或许你还有其他隐藏技能?武术表演、乐器演奏、艺术涂鸦?戳戳手指报名,万一安排上了呢! diff --git a/_data/friends.yml b/_data/friends.yml deleted file mode 100644 index 2fd5cb00..00000000 --- a/_data/friends.yml +++ /dev/null @@ -1,4 +0,0 @@ -friends: - - name: "一饱演福" - url: "https://ybyf.org" - description: "《载歌在谷·云集》旗下表演、舞台剧类活动。" diff --git a/_data/menus.yml b/_data/menus.yml deleted file mode 100644 index 39411271..00000000 --- a/_data/menus.yml +++ /dev/null @@ -1,29 +0,0 @@ -main: - - name: "主页" - url: "/" - weight: 1 - - - name: "演员风采" - url: "/comedians/" - weight: 2 - - - name: "成为喜剧人" - url: "/become/" - weight: 3 - - - name: "English" - url: "/en/" - weight: 4 - -footer: - - name: "合作" - url: "mailto:contact@ggtkx.org" - weight: 1 - - - name: "捐款" - url: "https://paypal.me/pandyfoundation" - weight: 2 - - - name: "English" - url: "/en/" - weight: 3 diff --git a/_data/past-events.yml b/_data/past-events.yml new file mode 100644 index 00000000..4c26fb79 --- /dev/null +++ b/_data/past-events.yml @@ -0,0 +1,126 @@ +- title: 春晚+游园会 + date: 2022.1.15 + location: SJCPA,San Jose, CA + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670660722/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E8%AF%9A-%E6%96%B9%E4%B9%89%E9%92%A2-3_8508_blehcz.jpg + url: https://www.youtube.com/watch?v=oma2LHcsOaE&list=PLa7OKLszvN9f2pPms3lZe_3mjJWbBnkZp + links: + - title: 全程录像 + url: https://www.youtube.com/watch?v=oma2LHcsOaE&list=PLa7OKLszvN9f2pPms3lZe_3mjJWbBnkZp + - title: 文案回顾 + url: https://mp.weixin.qq.com/s/SEACgaJfRH5UUpFDAVjhPQ + - title: 精彩记忆 + url: /archive/2022/gala/ +- title: 中秋游园 + date: 2022.9.10 + location: Discovery Meadow Park, San Jose, CA + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670219952/zgzg-io-website/2022-%E6%B8%B8%E5%9B%AD/MBZ07586_y9crh8.jpg + url: https://www.youtube.com/watch?v=iOfUjmVkEZI + links: + - title: 全程录像 + url: https://www.youtube.com/watch?v=iOfUjmVkEZI + - title: 文案回顾 + url: https://mp.weixin.qq.com/s/te5zMDefIP1yMDS0qGGdZg + - title: 精彩记忆 + url: /archive/2022/tour/ +- title: 歌手赛 + date: 2022.9.3 + location: SJSU Hammer Theatre Center, San Jose, CA + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1670220252/zgzg-io-website/2022%20singers/%E5%A4%A7%E5%90%88%E5%BD%B1_5260_yh94sv.jpg + url: https://www.youtube.com/watch?v=Bx7_9Txj-4s + links: + - title: 幕后录像 + url: https://www.youtube.com/watch?v=Bx7_9Txj-4s + - title: 文案回顾 + url: https://mp.weixin.qq.com/s/CDutiRCjypHjNbI44OOHsg + - title: 精彩记忆 + url: /archive/2022/singer/ +- title: 春节晚会 + date: 2021.2.13 + image: https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1633051218/zgzg-io-website/%E5%BC%80%E5%9C%BA%E8%88%9E_qf9cs8.jpg + url: https://www.youtube.com/watch?v=Og79WYH9cLA + links: + - title: 全程录像 + url: https://www.youtube.com/watch?v=Og79WYH9cLA + - title: 文案回顾 + url: https://mp.weixin.qq.com/s/VhQ00wBnL0_VQXhpX_Jn4g + - title: 精彩记忆 + url: https://www.youtube.com/watch?v=YhlDT3Eqqzs +- title: 春节晚会 + date: 2020.1.25 + image: https://blog.zgzg.io/wp-content/uploads/11581655426.jpg + url: https://blog.zgzg.io/2020/02/13/2020-review/ + links: + - title: 全程录像 + url: https://www.youtube.com/watch?v=LdGWNI6whfY + - title: 文案回顾 + url: https://blog.zgzg.io/2020/02/13/2020-review/ + - title: 精彩记忆 + url: https://blog.zgzg.io/2020-gala/ +- title: 歌手赛 + date: 2019.7.22 + location: SJSU Hammer Theatre Center, San Jose + image: https://blog.zgzg.io/wp-content/uploads/IMG_3320.jpg + url: https://blog.zgzg.io/2020/02/13/2019s-review/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?time_continue=8&v=uSlDmO9hh_w&feature=emb_title + - title: 文案回顾 + url: https://blog.zgzg.io/2019/08/26/2019s-review/ + - title: 活动剪影 + url: https://zgzg.link/2019s-photos +- title: 春晚+游园会 + date: 2019.2.2 + location: Flint Center, Cuptertino + image: https://blog.zgzg.io/wp-content/uploads/01569214165.jpg + url: https://blog.zgzg.io/2019/05/02/2019-review/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?time_continue=4&v=et57vrTcMIs&feature=emb_title + - title: 文案回顾 + url: https://blog.zgzg.io/2019/05/02/2019-review/ + - title: 活动剪影 + url: https://zgzg.link/2019s-photos +- title: 歌手赛 + date: 2018.8.19 + location: SJSU Hammer Theatre Center, San Jose + image: https://blog.zgzg.io/wp-content/uploads/2018%E6%AD%8C%E6%89%8B%E8%B5%9B-scaled.png + url: https://blog.zgzg.io/2018/08/28/2018-review/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?v=Kwc-f_TblAE + - title: 文案回顾 + url: https://blog.zgzg.io/2018/08/28/2018-review/ + - title: 活动剪影 + url: https://drive.google.com/drive/u/1/folders/1WZt_JG3U47btaQNVDaruWZsAgA5WqOiE +- title: 春晚+游园会 + date: 2018.2.17 + location: Flint Center, Cuptertino + image: https://blog.zgzg.io/wp-content/uploads/2018%E6%98%A5%E6%99%9A-scaled.png + url: https://blog.zgzg.io/2018/05/08/cec642be81/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?v=6XtOXfPGvlM&t=1247s + - title: 文案回顾 + url: https://blog.zgzg.io/2018/05/08/cec642be81/ + - title: 活动剪影 + url: https://photos.app.goo.gl/V9i0GsrigcZ76x733 +- title: 歌手赛 + date: 2017.8.26 + location: Sofia University Auditorium, Palo Auto + image: https://blog.zgzg.io/wp-content/uploads/2017-%E6%AD%8C%E6%89%8B%E8%B5%9B-scaled.png + url: https://blog.zgzg.io/2018/08/28/2018-review/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?v=TQVvXLveM-Y + - title: 文案回顾 + url: https://blog.zgzg.io/2017/09/07/2017s-review/ +- title: 春晚+游园会 + date: 2017.2.4 + location: Foothill College Theatre, Los Altos Hills + image: https://blog.zgzg.io/wp-content/uploads/2017-%E6%98%A5%E6%99%9A-scaled.png + url: https://blog.zgzg.io/2018/05/08/cec642be81/ + links: + - title: 视频回顾 + url: https://www.youtube.com/watch?v=BkPyo8KOwy8&list=PLa7OKLszvN9fzeK1MdXFoeGOpt-ET5JkJ&index=14 + - title: 文案回顾 + url: https://blog.zgzg.io/2017/02/22/2017-review/ diff --git a/_data/past-ytVideos.yml b/_data/past-ytVideos.yml new file mode 100644 index 00000000..6ae19cd2 --- /dev/null +++ b/_data/past-ytVideos.yml @@ -0,0 +1,24 @@ +ytVideos: + - title: 2024 龙年春晚 + url: https://www.youtube.com/embed/VQIiC6QABvk?si=P7F5ji5QAllMWYOA + status: active + + - title: 2023 兔年春晚 + url: https://www.youtube.com/embed/MHJdObJ79To?si=OhVPgNBLj70c-Mnw + status: + + - title: 2022 虎年春晚 + url: https://www.youtube.com/embed/SJfTForjDwI?si=Vnc4FWxO5zBkC4s3 + status: + + - title: 2021 牛年春晚 + url: https://www.youtube.com/embed/Og79WYH9cLA?si=PEAsEnER9kwcYbMe + status: + + - title: 2020 鼠年春晚 + url: https://www.youtube.com/embed/LdGWNI6whfY?si=j77Vxdx6CQgtNX-S + status: + + - title: 2018 狗年春晚 + url: https://www.youtube.com/embed/6XtOXfPGvlM?si=_P8HBE2-q2gY0L11 + status: \ No newline at end of file diff --git a/_data/trailer-images.yml b/_data/trailer-images.yml new file mode 100644 index 00000000..d59d6dd1 --- /dev/null +++ b/_data/trailer-images.yml @@ -0,0 +1,40 @@ +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144088/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00015-2-min_z6rse2.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144087/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00012-2-min_vmqdgr.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144086/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00013-2-min_pzyubv.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144086/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00016-2-min_r5lvvl.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144086/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00026-2-min_koj7sf.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144085/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00023-2-min_uqbwdn.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144082/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/026-min_pxd6at.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144082/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00005-2-min_qpgbxr.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144082/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/023-min_k0dfsd.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/t_auto_eco_compression/c_scale,w_1280/v1635144082/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00007-2-min_rjor3e.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144081/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/025-min_l8dycd.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144080/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/022-min_b1qmt4.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144079/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00003-2-min_gprwwd.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636050364/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/1_tgcoms.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144076/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%AE%A3%E4%BC%A0%E7%89%87%E8%8A%B1%E7%B5%AE_00002-2-min_non0io.jpg" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144077/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/021-min_haappu.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144073/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/019-min_jjzbgx.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144071/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/017-min_idwlzb.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144065/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/013-min_dezn0b.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144064/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/011-min_ef9j9d.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144058/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/001-min_kree4g.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144057/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/007-min_fjagpl.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/c_scale,w_1280/v1635144057/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/002-min_h7vjtx.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003344/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/cover5_ibeftg.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003347/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/cover2_dko2lc.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003345/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/cover_skvxon.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003341/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/cover3_tc3kya.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003339/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/cover4_ryffzr.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003212/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/ink_painting_2_ei5es2.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003210/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%8C%BB%E7%94%9F%E8%88%9E%E8%B9%88_3_bibl2e.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003210/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E8%A1%97%E8%88%9E_1_cfoxgf.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003210/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E8%A1%97%E8%88%9E_2_nuoqp3.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003209/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E7%9B%B8%E5%A3%B0_1_smwvi6.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003208/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E6%B0%91%E6%97%8F%E8%88%9E_%E8%A1%97%E8%88%9E_2_qb7bxz.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003208/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E6%B0%91%E6%97%8F%E8%88%9E_%E8%A1%97%E8%88%9E_1_hwluqa.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003207/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E4%B8%BB%E6%8C%81%E4%BA%BA_1_rc3zuj.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003206/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E4%B8%BB%E6%8C%81%E4%BA%BA_3_huvgsq.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003205/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E4%B8%BB%E6%8C%81%E4%BA%BA_2_ibajpc.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003205/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/%E5%8C%BB%E7%94%9F%E8%88%9E%E8%B9%88_1_ef2wj6.png" +- src: "https://res.cloudinary.com/zaigezaigu/image/upload/t_auto_eco_compression/v1636003187/zgzg-io-website/2022%E6%98%A5%E6%99%9A%E6%8B%8D%E6%91%84%E8%8A%B1%E7%B5%AE/ink_painting_1_sarxb8.png" diff --git a/_includes/2025-fall-event-info.html b/_includes/2025-fall-event-info.html new file mode 100644 index 00000000..7093ef7b --- /dev/null +++ b/_includes/2025-fall-event-info.html @@ -0,0 +1,18 @@ +
+
+
+
+
+

2026“载歌在谷”马年春晚🔥筹备中

+
+
+
+
+

春节晚会: 2026年2月14日 SJCPA

+

早鸟票售卖

+ {{ "购票链接" }} +
+
+
+
+
diff --git a/_includes/archive/2022/galalist.html b/_includes/archive/2022/galalist.html new file mode 100644 index 00000000..2fc6f138 --- /dev/null +++ b/_includes/archive/2022/galalist.html @@ -0,0 +1,21 @@ +
+
+

节目表

+
+
+ {% for item in site.data.archive-data.archive-2022-galalist %} +
+
+
+
+
+
+ {{ item.type }} +

{{ item.title }}

+

{{ item.description }}

+
+
+
+ {% endfor %} +
+
diff --git a/_includes/archive/2022/singerlist.html b/_includes/archive/2022/singerlist.html new file mode 100644 index 00000000..b2cfbbd7 --- /dev/null +++ b/_includes/archive/2022/singerlist.html @@ -0,0 +1,9 @@ +
+
+
+ {% for programme in site.data.archive-data.archive-2022-singerlist %} + {% include programme.html %} + {% endfor %} +
+
+
diff --git a/_includes/comedian.html b/_includes/comedian.html deleted file mode 100644 index 6313664b..00000000 --- a/_includes/comedian.html +++ /dev/null @@ -1,25 +0,0 @@ -
-
- {% if comedian.image %} -
{{ comedian.title }}
- {% endif %} -

{{ comedian.title }}

-
-

{{ comedian.description }}

- {% if comedian.contact.size > 0 %} -
    - {% for contact in comedian.contact %} -
  • {{ contact | markdownify | remove: '

    ' | remove: '

    ' }}
  • - {% endfor %} -
- {% endif %} - {% if comedian.highlights.size > 0 %} -
    - {% for highlight in comedian.highlights %} -
  • {{ highlight | markdownify | remove: '

    ' | remove: '

    ' }}
  • - {% endfor %} -
- {% endif %} -
-
-
diff --git a/_includes/eventInfo.html b/_includes/eventInfo.html new file mode 100644 index 00000000..917a3dad --- /dev/null +++ b/_includes/eventInfo.html @@ -0,0 +1,29 @@ +
+
+
+
+
+

2025 载歌在谷 歌手赛

+

「我最闪亮」成人组

+

复赛: 2025年5月24日

+ +

地点: Starbright Theater, Campbell, CA

+

决赛: 2025年7月19日

+

地点: Hammer Theater, San Jose, CA

+

「童星闪耀」青年组

+

决赛: 2025年5月25日

+

地点: Starbright Theater, Campbell, CA

+

WeChat公众号: 载歌在谷

+
+ + + +
+
+
+
diff --git a/_includes/footer.html b/_includes/footer.html index 2e17200f..8cfa92bd 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,19 +1,99 @@ -