mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
Demo site: https://jonmeow.carbon-lang.dev/ I'm trying to keep work under the `/website` subdirectory so that the misc files don't interfere with unrelated views of the repository. The `prebuild.py` script does some work to move things around and add frontmatter, helping the jekyll generation. I'm using the "just-the-docs" theme because I think it's a decent match for what we want, and getting jekyll up and running with it wasn't too difficult. Note #1526 proposed using Docusaurus; I started out there, but was having trouble getting it working with newer versions. The plugins in particular I got stuck trying to make work, which sent me looking for options that we could have working with less customization. I do lean towards jekyll though, because it's what GH uses so hopefully we can get a more consistent experience. Having a website has been approved for a while under #1492, but hasn't been a priority. I'm mainly doing this because I want to just be able to point people to carbon-lang.dev and have easy links that way. --------- Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
34 lines
937 B
HTML
34 lines
937 B
HTML
<!--
|
|
Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
Exceptions. See /LICENSE for license information.
|
|
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
-->
|
|
|
|
<!--
|
|
Used from:
|
|
https://github.com/just-the-docs/just-the-docs/blob/main/_includes/components/footer.html
|
|
-->
|
|
<footer>
|
|
<p><a href="#top" id="back-to-top">Back to top</a></p>
|
|
|
|
<p>
|
|
<a
|
|
href="https://github.com/carbon-language/carbon-lang/blob/trunk/{{ page.path }}"
|
|
id="edit-this-page"
|
|
>View on GitHub</a
|
|
>
|
|
</p>
|
|
|
|
<p class="text-small">
|
|
Part of the Carbon Language project, licensed under the
|
|
<a href="https://github.com/carbon-language/carbon-lang/blob/trunk/LICENSE"
|
|
>Apache License v2.0 with LLVM Exceptions</a
|
|
>.
|
|
</p>
|
|
|
|
<p class="text-small">
|
|
This site is hosted on GitHub Pages and uses
|
|
<a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>.
|
|
</p>
|
|
</footer>
|