File: welcome.html

package info (click to toggle)
node-mongodb 3.6.4%2B~cs11.13.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 76,604 kB
  • sloc: javascript: 138,083; python: 429; sh: 52; makefile: 37
file content (32 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<h2>Welcome to the hugo mongodb docs theme.</h2>

<p>You have two choices when it comes to managing this front page.</p>

<h3>1. Markdown:</h3>

<p>First create your own index page in content: <code>hugo new ./content/index.md</code></p>

<p>Set a type in the <a href="http://gohugo.io/content/front-matter/">&ldquo;front matter&rdquo;</a> to <code>index</code> eg:</p>

<pre><code>+++
date = &quot;2015-03-17T15:36:56Z&quot;
draft = false
title = &quot;index&quot;
type = &quot;index&quot;
+++

## Add your markdown content to your frontpage.

Hello welcome to my driver docs
</code></pre>

<h3>2. HTML</h3>

<p>Create your own <code>layouts\index.html</code> eg:</p>

<pre><code>&#123;&#123; partial &quot;header.html&quot; . &#125;&#125;

&lt;h2&gt;Add your HTML content to your frontpage.&lt;/h2&gt;

&#123;&#123; partial &quot;footer.html&quot; . &#125;&#125;
</code></pre>