Skip to content

Commit 5deeb9e

Browse files
committed
Merging in new styles and layout
2 parents 009e661 + 9fd08a5 commit 5deeb9e

32 files changed

+4223
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
docs/html/
2+
zf-mkdoc-theme/

.zf-mkdoc-theme-landing

Whitespace-only changes.

Makefile

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Makefile for ZF documentation landing page
2+
#
3+
# General usage:
4+
#
5+
# make all
6+
#
7+
# Once done, run:
8+
#
9+
# git add -A .
10+
# git commit
11+
# git push origin
12+
#
13+
# After running the `make all` command, you might want to preview the
14+
# results before committing:
15+
#
16+
# php -S 0:8000 -t .
17+
18+
.PHONY : all ready clean mkdocs build
19+
20+
all: build
21+
22+
zf-mkdoc-theme:
23+
- git clone git://github.com/zendframework/zf-mkdoc-theme.git
24+
25+
ready:
26+
- rm -Rf css img index.html js search sitemap.xml docs/html
27+
- mkdir -p docs/html
28+
29+
zf-component-list.json:
30+
- wget https://zendframework.github.io/zf-mkdoc-theme/scripts/zf-component-list.json
31+
32+
docs/book/index.html:
33+
- php docs/scripts/prepare_component_list.php
34+
35+
mkdocs: zf-mkdoc-theme zf-component-list.json docs/book/index.html
36+
- ./zf-mkdoc-theme/build.sh
37+
- cp -a docs/html/* .
38+
- rm index.html.dist
39+
40+
build: ready mkdocs clean
41+
42+
clean:
43+
- rm -Rf zf-mkdoc-theme
44+
- rm zf-component-list.json
45+
- rm docs/book/index.html

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exclude: ["docs/", "mkdocs.yml", "Makefile"]

css/fonts/FontAwesome.otf

132 KB
Binary file not shown.

css/fonts/fontawesome-webfont.eot

162 KB
Binary file not shown.

css/fonts/fontawesome-webfont.svg

Lines changed: 2671 additions & 0 deletions
Loading

css/fonts/fontawesome-webfont.ttf

162 KB
Binary file not shown.

css/fonts/fontawesome-webfont.woff

95.7 KB
Binary file not shown.
75.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)