上海太极拳馆

上海陈式太极拳

最新资讯

[English] Creating a New Theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. We’ll start with creating a new site with a very basic template.
2017-08-31 阅读更多

[日本語] 敬語体系

日本語の敬語体系は、一般に、大きく尊敬語・謙譲語・丁寧語に分類される。文化審議会国語分科会は、2007年2月に「敬語の指針」を答申し、これに
2017-08-30 阅读更多

[中文] 《长恨歌》

《长恨歌》是中国唐朝诗人白居易的一首长篇叙事诗。 第一段:贵妃受宠爱 汉皇重色思倾国,御宇多年求不得。杨家有女初长成,养在深闺人未识。 天生丽质难
2017-08-30 阅读更多

Theme preview

Copy from 《Hugo 主题 Nuo 文章样式预览》 这篇文章集中说明主题所支持的 Markdown 语法和 Hugo Shortcodes 插件,你也可以在这里预览到他们的样子。如果你不喜欢某些样式,可以去
2017-08-23 阅读更多

Shortcodes

center, right, left

## default
![img](/path/to/img.gif "img")

{{% center %}}
## center
![img](/path/to/img.gif "img")
{{% /center %}}

{{% right %}}
## right
![img](/path/to/img.gif "img")
{{% /right %}}

{{% left %}}
## left
![img](/path/to/img.gif "img")
{{% /left %}}
2016-08-30 阅读更多

JS Flowchart Diagrams

Usage

st=>start: Start|past:>http://www.google.com[blank]
e=>end: End:>http://www.google.com
op1=>operation: My Operation|past
op2=>operation: Stuff|current
sub1=>subroutine: My Subroutine|invalid
cond=>condition: Yes
or No?|approved:>http://www.google.com
c2=>condition: Good idea|rejected
io=>inputoutput: catch something...|request

st->op1(right)->cond
cond(yes, right)->c2
cond(no)->sub1(left)->op1
c2(yes)->io->e
c2(no)->op2->e
2015-03-04 阅读更多

JS Sequence Diagrams

Usage

Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
2015-03-04 阅读更多