You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 12, 2021. It is now read-only.
This is the source code for the Apache Apex Incubator website, hosted at [apex.incubator.apache.org](http://apex.incubator.apache.org/).
4
+
This is the source code for the Apache Apex Incubator website, hosted at [apex.incubator.apache.org](http://apex.incubator.apache.org/). The following tools are used to build the html pages:
The master branch of this repo contains the files that are used to generate the HTML that ultimately gets pushed to the incubator site.
17
+
The master branch of this repo contains the source files that are used to generate the HTML that ultimately gets pushed to the incubator site.
10
18
The `asf-site` branch is where the actual generated files are stored. Note that this branch must contain exactly one folder called `content`,
11
-
and so has been checked out as an orphan branch with its own commit history apart from the master branch. See the *Building* section below.
19
+
and so has been checked out as an orphan branch with its own commit history apart from the master branch. See the *Contributing* section below.
12
20
13
21
Through a [gitpubsub](http://www.apache.org/dev/gitpubsub.html) mechanism on the apache.org server,
14
22
files are taken from the `asf-branch` and pushed to the live server.
15
23
16
-
Partials
17
-
--------
18
-
All pages on the site share the same header and footer. These are stored in the `src/partials` folder.
19
-
20
24
Pages
21
25
-----
22
-
Pages are stored in the `src/pages` folder. Each page should look something like this:
26
+
Pages are stored in the `src/pages` folder. Each page uses the [handlebars templating engine](http://handlebarsjs.com/), and should look something like this:
23
27
24
28
```HTML
25
-
{{> header}}
29
+
{{> header}}<!-- includes the header.handlebars partial -->
26
30
27
31
<h1>Hello World</h1>
28
32
<p>I am a page.</p>
29
33
30
-
{{> footer}}
34
+
{{> footer}}<!-- includes the footer.handlebars partial -->
31
35
```
32
36
33
-
## Markdown files
37
+
Partials
38
+
--------
39
+
All pages on the site share the same header and footer. These are stored in the `src/partials` folder. You can put other partials in here and they will be made available to all templates (the `.handlebars` extension is dropped).
34
40
35
-
If you have a block of content that you would like to render as markdown, you can do so by creating a `.md` file in the `src/md/` folder.
36
-
These will be picked up, rendered has html, and passed into your page templates as partials.
41
+
Markdown files
42
+
--------------
43
+
If you have a block of content that you would like to render from a markdown file, you can do so by creating a `.md` file in the `src/md/` folder.
44
+
These `.md` files will be picked up, rendered has html, and exposed to page templates as partials.
37
45
Assuming you have a file called `src/md/example_markdown.md`, you could have this in a page template:
38
46
39
47
```HTML
@@ -46,17 +54,36 @@ Assuming you have a file called `src/md/example_markdown.md`, you could have thi
46
54
{{> footer}}
47
55
```
48
56
49
-
Building (requires node+npm)
50
-
----------------------------
51
-
Run `build.sh` from the directory. This will:
52
-
53
-
- ensure the necessary npm and bower dependencies are installed
54
-
- checks out and updates the `asf-site` branch with a new commit of the build from the current branch
55
-
56
-
You must manually push to the `asf-site` remote branch.
57
+
Contributing
58
+
------------
59
+
If you would like to make a change to the site:
60
+
61
+
1. Fork the [github mirror](https://github.com/apache/incubator-apex-site)
62
+
2. Create a new branch from `master`
63
+
3. Add commit(s) to your branch
64
+
4. Test your changes locally (see Development section below)
65
+
5. Open a pull request on the github mirror
66
+
6. A committer will merge your changes if all is good
67
+
68
+
If you are a committer, do the following:
69
+
70
+
1. Update the master branch with your (or a Pull Request's) change.
71
+
2. Push updated master to the asf remote master (https://git-wip-us.apache.org/repos/asf/incubator-apex-site.git)
72
+
2. Run `build.sh` from the master branch directory (requires nodejs and npm). This will:
73
+
- ensure the necessary npm and bower dependencies are installed
74
+
- checks out and updates the `asf-site` branch with a new commit of the build from the current branch
75
+
3. At this point, you should be on the `asf-site` branch. Simply push this branch to the asf remote and the site will automatically be updated within seconds.
76
+
77
+
Development
78
+
-----------
79
+
To set up the proper dev environment for this site, run the following:
80
+
81
+
```bash
82
+
npm install
83
+
./node_modules/.bin/bower install
84
+
./node_modules/.bin/gulp watch
85
+
```
57
86
58
-
Developing
59
-
----------
60
87
61
-
When making changes to src files, you can run `grunt watch`, which will constantly build the project in the `/content` folder,
62
-
so you don't have to manually run `grunt` after every change
88
+
The `gulp watch` command will start a process that watches for changes to source files and updates the `/content` folder accordingly.
89
+
Simply open `/content/index.html` in your browser and refresh the page when you make changes.
0 commit comments