3.1 KiB
This provides guidance on how to contribute various content to rocksdb.org
.
Landing page
Modify index.md
with your new or updated content.
If you want a GridBlock
as part of your content, you can do so directly with HTML:
<div class="gridBlock">
<div class="blockElement twoByGridBlock alignLeft">
<div class="blockContent">
<h3>Your Features</h3>
<ul>
<li>The <a href="http://example.org/">Example</a></li>
<li><a href="http://example.com">Another Example</a></li>
</ul>
</div>
</div>
<div class="blockElement twoByGridBlock alignLeft">
<div class="blockContent">
<h3>More information</h3>
<p>
Stuff here
</p>
</div>
</div>
</div>
or with a combination of changing ./_data/features.yml
and adding some Liquid to index.md
, such as:
{% include content/gridblocks.html data_source=site.data.features imagealign="bottom"%}
Blog
Adding a new blog post is a four-step process.
Some posts have a
permalink
andcomments
in the blog post YAML header. You will not need these for new blog posts. These are an artifact of migrating the blog from Wordpress to gh-pages.
- Create your blog post in
./_posts
in markdown (file extension.md
or.markdown
). See current posts in that folder or2016-04-07-blog-post-example.md
for an example of the YAML format. If the./_posts
directory does not exist, create it.
- You can add a
<!--truncate-->
tag in the middle of your post such that you show only the excerpt above that tag in the main/blog
index on your page.
- If you have not authored a blog post before, modify the
./_data/authors.yml
file with theauthor
id you used in your blog post, along with your full name and Facebook ID to get your profile picture. - Run the site locally to test your changes. It will be at
http://127.0.0.1/blog/your-new-blog-post-title.html
- Push your changes to GitHub.
Docs
To modify docs, edit the appropriate markdown file in ./_docs
.
To add docs to the site, ....
- Add your markdown file to the
./_docs
folder. See./docs-hello-world.md
for an example of the YAML header format.
- You can use folders in the
./_docs
directory to organize your content if you want. If the./_docs
directory does not exist, create it.
- Update
_data/nav_docs.yml
to add your new document to the navigation bar. Use theid
you put in your doc markdown in ad the id in the_data/nav_docs.yml
file. - Run the site locally to test your changes. It will be at
http://127.0.0.1/docs/your-new-doc-permalink.html
- Push your changes to GitHub.
Header Bar
To modify the header bar, change ./_data/nav.yml
.
Top Level Page
If you want a top-level page (e.g., http://rocksdb.org/support.html) -- not in /blog
or /docs
-- then you can create a markdown file in the root ./
. See ./top-level-example.md
for more information.
Other Changes
- CSS:
./css/main.css
or./_sass/*.scss
. - Images:
./static/images/[docs | posts]/....
- Main Blog post HTML:
./_includes/post.html
- Main Docs HTML:
./_includes/doc.html