├── .asf.yaml ├── .gitignore └── README.md /.asf.yaml: -------------------------------------------------------------------------------- 1 | github: 2 | description: Apache Website Template 3 | labels: 4 | - apache 5 | - website 6 | - template 7 | - docusaurus 8 | - jekyll 9 | features: 10 | wiki: false 11 | issues: true 12 | projects: false 13 | enabled_merge_buttons: 14 | squash: true 15 | merge: true 16 | rebase: true 17 | protected_branches: 18 | master: {} 19 | docusaurus: {} 20 | jekyll: {} 21 | 22 | notifications: 23 | commits: commits@community.apache.org 24 | issues: notifications@community.apache.org 25 | pullrequests: notifications@community.apache.org 26 | jira_options: link label 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | # Keep this file. 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apache Website Template 2 | 3 | This project contains documents and templates to help your project build a website that follows all the required Apache Website Policies. 4 | 5 | * [Docusaurus-based template](https://github.com/apache/apache-website-template/tree/docusaurus) 6 | * [Jekyll-based template](https://github.com/apache/apache-website-template/tree/jekyll) 7 | * [Pelican-based template](https://github.com/apache/template-site) 8 | 9 | For policies and infrastructure: 10 | 11 | * [Managing your project website](https://infra.apache.org/project-site.html) 12 | * [Release download pages for projects](https://infra.apache.org/release-download-pages.html) 13 | * [Privacy policy for project websites](https://privacy.apache.org/policies/website-policy.html) 14 | * [Apache project website branding policy](https://www.apache.org/foundation/marks/pmcs) 15 | 16 | Moreover, we recommend current ASF projects to tag their website repo with the technology in use and "website". You can find some online cases like: 17 | 18 | * [Hugo-based sites](https://github.com/search?q=topic:hugo+org:apache&type=Repositories) 19 | * [JBake-based sites](https://github.com/search?q=topic:jbake+org:apache&type=Repositories) 20 | 21 | ## Contact Us 22 | 23 | This project is maintained by the COMDEV PMC. You can contact us by: 24 | 25 | * [Submitting an issue](https://github.com/apache/apache-website-template/issues/new) on GitHub 26 | * Sending an email to the [dev mailing list](mailto:dev@community.apache.org) ([subscribe](mailto:dev-subscribe@community.apache.org)) 27 | --------------------------------------------------------------------------------