Skip to content

Commit 1a5a62e

Browse files
author
Guilherme Diego
authored
Feature/bootstrap (#1)
* Doing: Travis setup * add: theme * add: travis stuff * Fix: Travis YML * Fix: Deploy * Add: Branch
1 parent dcb488c commit 1a5a62e

File tree

7 files changed

+54
-7
lines changed

7 files changed

+54
-7
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/after-dark"]
2+
path = themes/after-dark
3+
url = https://github.com/Keats/after-dark

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
before_script:
2+
- curl -s -L https://github.com/Keats/gutenberg/releases/download/v0.3.1/gutenberg-v0.3.1-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin
3+
script:
4+
- gutenberg build
5+
deploy:
6+
provider: pages
7+
skip-cleanup: true
8+
github-token:
9+
secure: Oufj4oNvtFr98ny/dpoar4+ObCTjYGbh2smZ5EUMz4dL9qodCsg2+IIbcMwwWGGydAH5XjG4syEzeyxsquRlD0B0E75NTPzKUyqAZ8hom0wnyPDuwPcGOxOgYvPW7Dxo9kJO6kreyXZKmGg9rMOyEGKGyYcSJqk5EXHkFpuc79Jx+99A3zvarB+QAUvAADevTNYb5nFpUV3DCV1E5X3dVy0fNv7gyBU83GzrXAxlwfFXCwbf9PIEEhxSnyzD6EPt/EgUn9RLJyazwgY1uu1VsQ5/Q4hov3EiKRYtWpjAcgvLM1O4phTngXogQg+BYwXaSvaqSwh6FwlkXar2z47sqi3ej8it99v1NawCGP3Z233OeqdISKawhFjUwh1p6iuDy1hma1qGwLgCh0aapfgi09Obbp1XqhJGD2U0CCDIvxOKk+Hy0om1w74PpD2XJWv3vWddGBwLCz/F7gtuaIZCbohWaozW21gPvNGwCPH1oIvE+gH3GPac7/jzz2MCaAGsJZGgeFhY9YWIgET+g7QtlHeDLFlvQfNNWgnbbROHQkJg1I0P36Nbec5T6kQcMyAIaHGEBW/wNtxrdYnreT038do7LF4er8Oz9KrIf9vKNDFF7UV/yKbosff6rJZapXipleX/icjgMsNL//Gt5W2scpk02p6x3FvL1zy5Yn4GTa0=
10+
keep-history: true
11+
local-dir: public
12+
on:
13+
branch: master

config.dev.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
base_url = "localhost:8080"
2+
3+
# RSS
4+
title = "Rust Brazil Blog"
5+
description = "Um blog com conteudo brasileiro sobre Rust Lang"
6+
default_language = "pt"
7+
8+
theme = "after-dark"
9+
compile_sass = true
10+
11+
highlight_code = true
12+
highlight_theme = "solarized-dark"
13+
14+
build_search_index = true
15+
16+
# [extra]
17+
# Put all your custom variables here

config.toml

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# The URL the site will be built for
2-
base_url = "http://localhost"
1+
base_url = "rust-br.github.io/blog"
32

4-
# Whether to automatically compile all Sass files in the sass directory
3+
# RSS
4+
title = "Rust Brazil Blog"
5+
description = "Um blog com conteudo brasileiro sobre Rust Lang"
6+
default_language = "pt"
7+
8+
theme = "after-dark"
59
compile_sass = true
610

7-
# Whether to do syntax highlighting
8-
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Gutenberg
911
highlight_code = true
12+
highlight_theme = "solarized-dark"
1013

11-
# Whether to build a search index to be used later on by a JavaScript library
1214
build_search_index = true
1315

14-
[extra]
16+
# [extra]
1517
# Put all your custom variables here

content/_index.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
+++
2+
paginate_by = 5
3+
+++

content/posts/hello-world.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Futuro Post"
3+
description = "Algum post ae"
4+
date=2018-05-28
5+
+++
6+
7+
## TO DO
8+
Escrever Primeiro Post

themes/after-dark

Submodule after-dark added at 896d825

0 commit comments

Comments
 (0)