Skip to content

Commit

Permalink
copy zola example from vercel/vercel (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikareads authored Jan 13, 2025
1 parent 2dba884 commit bc7eb99
Show file tree
Hide file tree
Showing 11 changed files with 107 additions and 0 deletions.
2 changes: 2 additions & 0 deletions framework-boilerplates/zola/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/public
/.vercel
19 changes: 19 additions & 0 deletions framework-boilerplates/zola/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Zola

This directory is a brief example of a Zola site that can be deployed to Vercel with zero configuration.

## Deploy Your Own

Deploy your own Zola project with Vercel.

[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/examples/tree/main/framework-boilerplates/zola&template=zola)

_Live Example: https://zola-template.vercel.app_

### Deploying From Your Terminal

You can deploy your new Zola project with a single command from your terminal using [Vercel CLI](https://vercel.com/download):

```shell
$ vercel
```
16 changes: 16 additions & 0 deletions framework-boilerplates/zola/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The URL the site will be built for
base_url = "/"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false

[extra]
# Put all your custom variables here
6 changes: 6 additions & 0 deletions framework-boilerplates/zola/content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "List of blog posts"
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"
+++
6 changes: 6 additions & 0 deletions framework-boilerplates/zola/content/blog/first.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "My first post"
date = 2019-11-27
+++

This is my first blog post.
6 changes: 6 additions & 0 deletions framework-boilerplates/zola/content/blog/second.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "My second post"
date = 2019-11-28
+++

This is my second blog post.
18 changes: 18 additions & 0 deletions framework-boilerplates/zola/templates/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>MyBlog</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
</head>

<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>

</html>
9 changes: 9 additions & 0 deletions framework-boilerplates/zola/templates/blog-page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% extends "base.html" %}

{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}
12 changes: 12 additions & 0 deletions framework-boilerplates/zola/templates/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% extends "base.html" %}

{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}
8 changes: 8 additions & 0 deletions framework-boilerplates/zola/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% extends "base.html" %}

{% block content %}
<h1 class="title">
This is my blog made with Zola.
</h1>
<p>Click <a href="/blog/">here</a> to see my posts.</p>
{% endblock content %}
5 changes: 5 additions & 0 deletions framework-boilerplates/zola/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"env": {
"ZOLA_VERSION": "0.19.1"
}
}

0 comments on commit bc7eb99

Please sign in to comment.