or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Do you want to remove this version name and description?
Syncing
xxxxxxxxxx
【Drupal教學】使用Zen開啟客製化樣式的大門
說到客製化樣式的話絕對不能不提 Zen!
Zen是Drupal眾多模版的其中一個,它提供了非常良好的配置規劃讓想要客製化Drupal網站樣式的人可以輕鬆簡單的做出自己喜歡的樣式!
不管是單欄、雙欄,這些在Zen上面設定可以說是輕而易舉!但是該怎麼做呢?
步驟一、安裝Zen
你可以選擇從Zen | Drupal.org下載後到外觀裡面安裝
也可以使用drush指令
drush en zen -y
安裝好就可以在Drupal專案資料夾下面

sites/all/themes
裡頭看到zen的資料夾步驟二、用Zen建立自己的Theme
使用
drush zen [name]
指令建立資料夾假如我想要把我的Theme命名為Amazing name
我就要輸入這個指令
drush zen "Amazing name"
這樣就完成客製化樣式的前置作業囉!