mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
Remix the sample content
Somewhat
This commit is contained in:
parent
c1ae750806
commit
9bb773a101
8 changed files with 276 additions and 61 deletions
|
|
@ -1,5 +1,5 @@
|
|||
Title: Alpha Centauri
|
||||
Date: 2016-11-13 09:00
|
||||
Date: 2001-01-01 09:00
|
||||
Category: Planetary Stuff
|
||||
Tags: stars, planets, g-type
|
||||
Slug: alpha-centauri
|
||||
|
|
|
|||
202
content/html5-element-test.md
Normal file
202
content/html5-element-test.md
Normal file
|
|
@ -0,0 +1,202 @@
|
|||
Title: HTML5 Element Test
|
||||
Date: 2000-01-01 09:00
|
||||
Category: HTML5
|
||||
Tags: html, sample, test
|
||||
Slug: html5-element-test
|
||||
Author: @taniarascia
|
||||
Summary: A example page containing common HTML5 elements for CSS testing purposes. https://github.com/taniarascia/html5-test/
|
||||
|
||||
<p>Common HTML5 elements for CSS testing purposes.</p>
|
||||
|
||||
<h1>Formatting</h1>
|
||||
|
||||
<p>This sentence is <b>bold</b>. If you like semantics, you might go with
|
||||
<strong>strong</strong> or <em>emphasized</em> text. If not, <i>italic</i> is
|
||||
still around. <small>Small</small> text is for fine print. Your copy can also
|
||||
be <sub>subscripted</sub> and <sup>superscripted</sup>, <ins>inserted</ins>,
|
||||
<del>deleted</del>, or <mark>highlighted</mark>. You would use a
|
||||
<a href="#!">hyperlink</a> to go to a new page.</p>
|
||||
<p>If you like to write about there are plenty of semantic tags for you.
|
||||
There's the generic <code>code</code>, as well as <kbd>keyboard input</kbd>,
|
||||
<samp>computer output</samp>, and <var>variables</var>.</p>
|
||||
<p>You might have need of a <cite>citation</cite>, <q>short quotation</q>,
|
||||
<abbr>abbreviation</abbr>, or <dfn>definition</dfn>. It might be
|
||||
<time>10:00pm</time>.</p>
|
||||
|
||||
<address><p>123 Fake Street<br> Springfield, USA</p></address>
|
||||
|
||||
<h2>Blockquote</h2>
|
||||
|
||||
<blockquote>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quibusdam
|
||||
molestiae et assumenda molestias alias ut saepe doloribus, porro, deleniti
|
||||
neque, harum minus, commodi laudantium quod excepturi nam corrupti odit
|
||||
provident. <cite>- Blockquote Citation</cite>
|
||||
</blockquote>
|
||||
|
||||
<h2>Preformatted Text</h2>
|
||||
|
||||
<pre>class Voila {
|
||||
public:
|
||||
// Voila
|
||||
static const string VOILA = "Voila";
|
||||
}</pre>
|
||||
|
||||
<h2>Horizontal Line</h2>
|
||||
|
||||
<hr>
|
||||
|
||||
<h1>Headings</h1>
|
||||
|
||||
<h1>First Heading h1</h1>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ea delectus
|
||||
cupiditate minima, magni possimus commodi, eveniet? Rem, adipisci architecto
|
||||
pariatur libero aliquid culpa sunt accusantium. Ipsa error aliquid et!
|
||||
Animi.</p>
|
||||
|
||||
<h2>Second Heading h2</h2>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia molestias
|
||||
ullam quasi est a nemo, accusamus voluptatum autem. Eius explicabo est
|
||||
assumenda voluptatem id, hic maxime mollitia facere debitis quos.</p>
|
||||
|
||||
<h3>Third Heading h3</h3>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nemo deleniti,
|
||||
repudiandae rerum nam laborum eligendi aperiam. Autem id, ad necessitatibus
|
||||
accusantium, facilis, quae ullam est, voluptates debitis fugiat quos
|
||||
inventore!</p>
|
||||
|
||||
<h4>Fourth Heading h4</h4>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Neque cum eum
|
||||
eligendi voluptatum quasi nisi doloremque ipsam unde, laboriosam nihil
|
||||
voluptatem consequatur quam non similique vero ratione animi sit
|
||||
veritatis.</p>
|
||||
|
||||
<h5>Fifth Heading h5</h5>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Odit voluptatem
|
||||
necessitatibus eos iusto nam deserunt, dicta possimus error qui reiciendis,
|
||||
aut dolore magnam eligendi maiores expedita commodi perferendis non
|
||||
blanditiis.</p>
|
||||
|
||||
<h1>Lists</h1>
|
||||
|
||||
<h2>Unordered list</h2>
|
||||
|
||||
<ul>
|
||||
<li>List item one
|
||||
<ul>
|
||||
<li>Nested list item</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>List item two</li>
|
||||
<li>List item three</li>
|
||||
</ul>
|
||||
|
||||
<h2>Ordered list</h2>
|
||||
|
||||
<ol>
|
||||
<li>List item one
|
||||
<ol>
|
||||
<li>Nested list item</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>List item two</li>
|
||||
<li>List item three</li>
|
||||
</ol>
|
||||
|
||||
<h2>Definition List</h2>
|
||||
|
||||
<dl>
|
||||
<dt>Definition Title One</dt>
|
||||
<dd>First definition description</dd> <dt>Definition Title Two</dt>
|
||||
<dd>Second definition description</dd>
|
||||
</dl>
|
||||
|
||||
<h1>Tables</h1>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Head 1</th>
|
||||
<th>Head 2</th>
|
||||
<th>Head 3</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>Footer 1</th>
|
||||
<th>Footer 2</th>
|
||||
<th>Footer 3</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Description 1</td>
|
||||
<td>Description 2</td>
|
||||
<td>Description 3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Description 1</td>
|
||||
<td>Description 2</td>
|
||||
<td>Description 3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Description 1</td>
|
||||
<td>Description 2</td>
|
||||
<td>Description 3</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h1>Forms</h1>
|
||||
|
||||
<form>
|
||||
<label for="text">Text Input</label>
|
||||
<input id="text" type="text" placeholder="Text Input">
|
||||
<label for="password">Password</label>
|
||||
<input id="password" type="password" placeholder="Password">
|
||||
<label for="url">URL</label>
|
||||
<input id="url" type="url" placeholder="http://www.example.com">
|
||||
<label for="email">Email Address</label>
|
||||
<input id="email" type="email" placeholder="email@example.com">
|
||||
<label for="phone">Phone Number</label>
|
||||
<input id="phone" type="tel" placeholder="123-123-1234">
|
||||
<label for="search">Search</label>
|
||||
<input id="search" type="search" placeholder="Search">
|
||||
<label for="number">Number</label>
|
||||
<input id="number" type="number" placeholder="Number">
|
||||
<label for="select">Select</label>
|
||||
<select id="select">
|
||||
<option>Option One</option>
|
||||
<option>Option Two</option>
|
||||
<option>Option Three</option>
|
||||
</select>
|
||||
<label for="checkbox1">
|
||||
<input id="checkbox1" name="checkbox" type="checkbox" checked="checked"> Choice A</label>
|
||||
<label for="checkbox2">
|
||||
<input id="checkbox2" name="checkbox" type="checkbox"> Choice B</label>
|
||||
<label for="radio1">
|
||||
<input id="radio1" name="radio" type="radio" class="radio" checked="checked"> Option 1</label>
|
||||
<label for="radio2">
|
||||
<input id="radio2" name="radio" type="radio" class="radio"> Option 2</label>
|
||||
<label for="textarea">Textarea</label>
|
||||
<textarea id="textarea" rows="5" cols="30" placeholder="Message"></textarea>
|
||||
<input type="button" value="Button">
|
||||
<input type="submit" value="Submit">
|
||||
<input type="reset" value="Reset">
|
||||
<button>Button element</button>
|
||||
</form>
|
||||
|
||||
<h2>Fieldset and Legend</h2>
|
||||
|
||||
<form>
|
||||
<fieldset>
|
||||
<legend>Legend</legend>
|
||||
<label for="text">Text Input</label>
|
||||
<input id="text" type="text" placeholder="Text Input">
|
||||
<input type="submit" value="Submit">
|
||||
</fieldset>
|
||||
</form>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 189 KiB |
|
|
@ -1,3 +1,5 @@
|
|||
Title: About
|
||||
|
||||
[README.md](https://github.com/nairobilug/pelican-alchemy/blob/master/README.md) <i class="fa fa-github-alt"></i>.
|
||||
Alchemy is a functional, clean, responsive theme for the [Pelican](http://getpelican.com) static site generator.
|
||||
|
||||
Visit the <i class="fa fa-github-alt"></i> [README.md](https://github.com/nairobilug/pelican-alchemy/blob/master/README.md).
|
||||
|
|
|
|||
3
content/pages/settings.md
Normal file
3
content/pages/settings.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Title: Settings
|
||||
|
||||
Visit the <i class="fa fa-github-alt"></i> [Settings Wiki](https://github.com/nairobilug/pelican-alchemy/wiki/Settings).
|
||||
|
|
@ -1,9 +1,8 @@
|
|||
Title: Sample Article
|
||||
Date: 2016-12-01 09:00
|
||||
Title: Sample Bootstrap Post
|
||||
Date: 2002-01-01 09:00
|
||||
Category: Sample
|
||||
Tags: sample, post
|
||||
Slug: sample-article
|
||||
Author: Bootstrap
|
||||
Tags: sample, bootstrap, post
|
||||
Slug: sample-bootstrap-post
|
||||
Summary: This blog post shows a few different types of content that's supported and styled with Bootstrap. Basic typography, images, and code are all supported. Magical.
|
||||
|
||||
This blog post shows a few different types of content that's supported and styled with Bootstrap. Basic typography, images, and code are all supported.
|
||||
|
|
@ -24,7 +23,30 @@ Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis moll
|
|||
|
||||
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
|
||||
|
||||
Example code block
|
||||
```json
|
||||
{
|
||||
"name": "AwesomeProject",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node node_modules/react-native/local-cli/cli.js start",
|
||||
"test": "jest"
|
||||
},
|
||||
"dependencies": {
|
||||
"react": "16.0.0",
|
||||
"react-native": "0.50.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-jest": "21.2.0",
|
||||
"babel-preset-react-native": "4.0.0",
|
||||
"jest": "21.2.1",
|
||||
"react-test-renderer": "16.0.0"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "react-native"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.
|
||||
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
Title: Solar System
|
||||
Date: 2016-11-12 09:00
|
||||
Category: Space Science
|
||||
Tags: planets, rings, universe
|
||||
Slug: solar-system
|
||||
Summary: Our solar system consists of an average star we call the Sun, the planets Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, and "Pluto". It includes: the satellites of the planets; numerous comets, asteroids, and meteoroids; and the interplanetary medium.
|
||||
|
||||
The **Solar System** is the [gravitationally](https://en.wikipedia.org/wiki/Gravity "Gravity") bound system comprising the [Sun](https://en.wikipedia.org/wiki/Sun "Sun") and the objects that orbit it, either directly or indirectly. Of those objects that orbit the Sun directly, the largest eight are the [planets](https://en.wikipedia.org/wiki/Planet "Planet"), with the remainder being significantly smaller objects, such as [dwarf planets](https://en.wikipedia.org/wiki/Dwarf_planet "Dwarf planet") and [small Solar System bodies](https://en.wikipedia.org/wiki/Small_Solar_System_body "Small Solar System body"). Of the objects that orbit the Sun indirectly, the [moons](https://en.wikipedia.org/wiki/Natural_satellite "Natural satellite"), two are larger than the smallest planet, [Mercury](https://en.wikipedia.org/wiki/Mercury_(planet) "Mercury (planet)").
|
||||
|
||||

|
||||
|
||||
The Solar System [formed 4.6 billion years ago](https://en.wikipedia.org/wiki/Formation_and_evolution_of_the_Solar_System "Formation and evolution of the Solar System") from the [gravitational collapse](https://en.wikipedia.org/wiki/Gravitational_collapse "Gravitational collapse") of a giant interstellar [molecular cloud](https://en.wikipedia.org/wiki/Molecular_cloud "Molecular cloud"). The vast majority of the system's [mass](https://en.wikipedia.org/wiki/Mass "Mass") is in the Sun, with most of the remaining mass contained in [Jupiter](https://en.wikipedia.org/wiki/Jupiter "Jupiter"). The four smaller inner planets, [Mercury](https://en.wikipedia.org/wiki/Mercury_(planet) "Mercury (planet)"), [Venus](https://en.wikipedia.org/wiki/Venus "Venus"), [Earth](https://en.wikipedia.org/wiki/Earth "Earth") and [Mars](https://en.wikipedia.org/wiki/Mars "Mars"), are [terrestrial planets](https://en.wikipedia.org/wiki/Terrestrial_planet "Terrestrial planet"), being primarily composed of rock and metal. The four outer planets are [giant planets](https://en.wikipedia.org/wiki/Giant_planet "Giant planet"), being substantially more massive than the terrestrials. The two largest, Jupiter and [Saturn](https://en.wikipedia.org/wiki/Saturn "Saturn"), are [gas giants](https://en.wikipedia.org/wiki/Gas_giant "Gas giant"), being composed mainly of [hydrogen](https://en.wikipedia.org/wiki/Hydrogen "Hydrogen") and [helium](https://en.wikipedia.org/wiki/Helium "Helium"); the two outermost planets, [Uranus](https://en.wikipedia.org/wiki/Uranus "Uranus") and [Neptune](https://en.wikipedia.org/wiki/Neptune "Neptune"), are [ice giants](https://en.wikipedia.org/wiki/Ice_giant "Ice giant"), being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called [volatiles](https://en.wikipedia.org/wiki/Volatiles "Volatiles"), such as water, [ammonia](https://en.wikipedia.org/wiki/Ammonia "Ammonia") and [methane](https://en.wikipedia.org/wiki/Methane "Methane"). All planets have almost circular orbits that lie within a nearly flat disc called the [ecliptic](https://en.wikipedia.org/wiki/Ecliptic "Ecliptic").
|
||||
|
||||
> Source: [https://en.wikipedia.org/wiki/Solar_System](https://en.wikipedia.org/wiki/Solar_System)
|
||||
Loading…
Add table
Add a link
Reference in a new issue