Skip to content

Commit 743ca8a

Browse files
committed
Added jekyll config files
1 parent d21507d commit 743ca8a

File tree

5 files changed

+107
-0
lines changed

5 files changed

+107
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor

_config.yml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: "Laravel Toolbox"
22+
email: "dinncer@gmail.com"
23+
description: "Tools that we are using to build Laravel Applications on daily basis."
24+
url: "https://laratoolbox.github.io"
25+
github_username: "laratoolbox"
26+
27+
# Build settings
28+
remote_theme: pmarsceill/just-the-docs
29+
30+
# Enable or disable the site search
31+
# Supports true (default) or false
32+
search_enabled: true
33+
search:
34+
# Split pages into sections that can be searched individually
35+
# Supports 1 - 6, default: 2
36+
heading_level: 2
37+
# Maximum amount of previews per search result
38+
# Default: 3
39+
previews: 2
40+
# Maximum amount of words to display before a matched word in the preview
41+
# Default: 5
42+
preview_words_before: 3
43+
# Maximum amount of words to display after a matched word in the preview
44+
# Default: 10
45+
preview_words_after: 3
46+
# Set the search token separator
47+
# Default: /[\s\-/]+/
48+
# Example: enable support for hyphenated search words
49+
tokenizer_separator: /[\s/]+/
50+
# Display the relative url in search results
51+
# Supports true (default) or false
52+
rel_url: true
53+
# Enable or disable the search button that appears in the bottom right corner of every page
54+
# Supports true or false (default)
55+
button: false
56+
57+
# Enable or disable heading anchors
58+
heading_anchors: true
59+
60+
# Aux links for the upper right navigation
61+
aux_links:
62+
"Laratoolbox on GitHub":
63+
- "//github.com/laratoolbox"
64+
65+
# Makes Aux links open in a new tab. Default is false
66+
aux_links_new_tab: false
67+
68+
# Sort order for navigation links
69+
# nav_sort: case_insensitive # default, equivalent to nil
70+
nav_sort: case_sensitive # Capital letters sorted before lowercase
71+
72+
# Footer content
73+
# appears at the bottom of every page's main content
74+
75+
# Back to top link
76+
back_to_top: true
77+
back_to_top_text: "Back to top"
78+
79+
footer_content: "Copyright © 2020 Laravel Toolbox"
80+
81+
# Footer last edited timestamp
82+
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
83+
last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html
84+
85+
# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define
86+
color_scheme: red

_sass/color_schemes/red.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//
2+
// Laravel Theme
3+
//
4+
5+
$link-color: $red-200;
6+
$btn-primary-color: $red-200;
7+
$base-button-color: $grey-lt-100;

favicon.ico

15 KB
Binary file not shown.

index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
title: Home
4+
nav_order: 1
5+
description: "Tools that we are using to build Laravel Applications on daily basis."
6+
permalink: /
7+
---
8+
9+
# Laratoolbox

0 commit comments

Comments
 (0)