Skip to content

Commit 2fad459

Browse files
committed
index.md
1 parent ec81db6 commit 2fad459

File tree

4 files changed

+290
-1
lines changed

4 files changed

+290
-1
lines changed

docs/_config.yml

Lines changed: 290 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,291 @@
1-
theme: amitmerchant1990/reverie
1+
###########################################################
2+
### Welcome to Beautiful Jekyll!
3+
### This config file is meant for settings that affect your entire website. When you first
4+
### set up your website you should go through all these settings and edit them, but after
5+
### the initial set up you won't need to come back to this file often.
6+
###########################################################
27

8+
############################
9+
# --- Required options --- #
10+
############################
11+
12+
# Name of website
13+
title: Flowgorithm for MacOS
14+
15+
# Your name to show in the footer
16+
author: joe stasik
17+
18+
###############################################
19+
# --- List of links in the navigation bar --- #
20+
###############################################
21+
22+
navbar-links:
23+
About Me: "about me"
24+
Resources:
25+
- Flowgorithm.org: "http://www.flowgorithm.org"
26+
- Flowgorithm-macOS: "https://www.githum.com/jostasik/Flowgorithm-macOS/"
27+
personal site: "https://gogorama.me"
28+
29+
################
30+
# --- Logo --- #
31+
################
32+
33+
# Image to show in the navigation bar - works best with a square image
34+
# Remove this parameter if you don't want an image in the navbar
35+
avatar: "/assets/img/avatar-icon.png"
36+
37+
# By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false'
38+
round-avatar: false
39+
40+
# If you want to have an image logo in the top-left corner instead of having the title of the website,
41+
# then specify the following parameter
42+
title-img: /assets/img/header.png
43+
44+
45+
#####################################
46+
# --- Footer social media links --- #
47+
#####################################
48+
49+
# Select the social network links that you want to show in the footer.
50+
# Uncomment the links you want to show and add your information to each one.
51+
social-network-links:
52+
email: "jstasik97@gmail.com"
53+
# rss: true # remove this line if you don't want to show an RSS link at the bottom
54+
facebook: deanattali
55+
github: jostasik
56+
twitter: joe_stasik
57+
# patreon: DeanAttali
58+
# youtube: c/daattali
59+
# medium: yourname
60+
# reddit: yourname
61+
# linkedin: daattali
62+
# xing: yourname
63+
# stackoverflow: "3943160/daattali"
64+
# snapchat: deanat78
65+
# instagram: deanat78
66+
# spotify: yourname
67+
# telephone: +14159998888
68+
# steam: deanat78
69+
# twitch: yourname
70+
# yelp: yourname
71+
# telegram: yourname
72+
# calendly: yourname
73+
# mastodon: instance.url/@username
74+
# ORCID: your ORCID ID
75+
# google-scholar: your google scholar
76+
# discord: invite/invite_code or users/userid
77+
# kaggle: yourname
78+
# hackerrank: yourname
79+
80+
# If you want your website to generate an RSS feed, provide a description
81+
# The URL for the feed will be https://<your_website>/feed.xml
82+
# rss-description: This website is a virtual proof that I'm awesome
83+
84+
###########################
85+
# --- General options --- #
86+
###########################
87+
88+
# Select which social network share links to show in posts
89+
share-links-active:
90+
twitter: true
91+
facebook: true
92+
linkedin: false
93+
vk: false
94+
95+
# How to display the link to your website in the footer
96+
# Remove this if you don't want a link in the footer
97+
url-pretty: "gogorama.me/Flowgorithm-macOS"
98+
99+
# Excerpt word length - Truncate the excerpt of each post on the feed page to the specified number of words
100+
excerpt_length: 50
101+
102+
# Whether or not to show an excerpt for every blog post in the feed page
103+
feed_show_excerpt: true
104+
105+
# Whether or not to show a list of tags below each post preview in the feed page
106+
feed_show_tags: true
107+
108+
# Add a search button to the navbar
109+
post_search: true
110+
111+
# Add a button in the footer to edit the current page. Only works if your website is hosted on GitHub
112+
edit_page_button: true
113+
114+
# Allow sub-menu items (second-level navigation menu items) to be longer than the top-level menu
115+
# If this setting is off, then long sub-menu words might get cut off
116+
# See https://github.com/daattali/beautiful-jekyll/issues/765 to understand the issue this setting can solve
117+
navbar-var-length: false
118+
119+
# The keywords to associate with your website, for SEO purposes
120+
#keywords: "my,list,of,keywords"
121+
122+
######################################
123+
# --- Colours / background image --- #
124+
######################################
125+
126+
# Personalize the colours in your website. Colour values can be any valid CSS colour
127+
128+
navbar-col: "#004D9A"
129+
navbar-text-col: "#56562E"
130+
navbar-border-col: "#507494"
131+
page-col: "#FFFFFF"
132+
text-col: "#060606"
133+
link-col: "#6A1D63"
134+
hover-col: "#0085A1"
135+
footer-col: "#EAEAEA"
136+
footer-text-col: "#777777"
137+
footer-link-col: "#404040"
138+
footer-hover-col: "#0085A1"
139+
140+
# Alternatively, the navbar, footer, and page background can be set to an image
141+
# instead of colour
142+
143+
#navbar-img: "/assets/img/bgimage.png"
144+
#footer-img: "/assets/img/bgimage.png"
145+
#page-img: "/assets/img/bgimage.png"
146+
147+
# Suggest a colour for mobile browsers to use as the browser's theme. This is only supported by a few mobile browsers.
148+
#mobile-theme-col: "#0085A1"
149+
150+
# For any extra visual customization, you can include additional CSS files in every page on your site. List any custom CSS files here
151+
#site-css:
152+
# - "/assets/css/custom-styles.css"
153+
154+
# If you have common JavaScript files that should be included in every page, list them here
155+
#site-js:
156+
# - "/assets/js/custom-script.js"
157+
158+
#################################
159+
# --- Web Analytics Section --- #
160+
#################################
161+
162+
# Fill in your Google Analytics gtag.js ID to track your website using gtag
163+
#gtag: ""
164+
165+
# Fill in your Google Analytics ID to track your website using Google Analytics
166+
#google_analytics: ""
167+
168+
# Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics
169+
#cloudflare_analytics: ""
170+
171+
# Google Tag Manager ID
172+
#gtm: ""
173+
174+
# Matomo (aka Piwik) Web statistics
175+
# Uncomment the following section to enable Matomo. The opt-out parameter controls
176+
# whether or not you want to allow users to opt out of tracking.
177+
#matomo:
178+
# site_id: "9"
179+
# uri: "demo.wiki.pro"
180+
# opt-out: true
181+
182+
####################
183+
# --- Comments --- #
184+
####################
185+
186+
# To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid)
187+
#disqus: ""
188+
189+
# To use Facebook Comments, create a Facebook app and fill in the Facebook App ID
190+
#fb_comment_id: ""
191+
192+
# To use CommentBox, sign up for a Project ID on https://commentbox.io
193+
#commentbox: "" # Project ID, e.g. "5694267682979840-proj"
194+
195+
# To use Utterances comments: (0) uncomment the following section, (1) fill in
196+
# "repository" (make sure the repository is public), (2) Enable Issues in your repository,
197+
# (3) Install the Utterances app in your repository https://github.com/apps/utterances
198+
# See more details about the parameters below at https://utteranc.es/
199+
#utterances:
200+
# repository: # GitHub username/repository eg. "daattali/beautiful-jekyll"
201+
# issue-term: title # Mapping between blog posts and GitHub issues
202+
# theme: github-light # Utterances theme
203+
# label: blog-comments # Label that will be assigned to GitHub Issues created by Utterances
204+
205+
# To use Staticman comments, uncomment the following section. You may leave the reCaptcha
206+
# section commented if you aren't using reCaptcha for spam protection.
207+
# Using Staticman requires advanced knowledge, please consult
208+
# https://github.com/eduardoboucas/staticman/ and https://staticman.net/ for further
209+
# instructions. For any support with staticman please direct questions to staticman and
210+
# not to BeautifulJekyll.
211+
#staticman:
212+
# repository : # GitHub username/repository eg. "daattali/beautiful-jekyll"
213+
# branch : master # If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml`
214+
# endpoint : # URL of your deployment, with a trailing slash eg. "https://<your-api>/v3/entry/github/"
215+
# reCaptcha: # (optional, set these parameters in `staticman.yml` as well)
216+
# siteKey : # You need to apply for a site key on Google
217+
# secret : # Encrypt your password by going to https://<your-own-api>/v3/encrypt/<your-site-secret>
218+
219+
# To use giscus comments:
220+
# (0) Uncomment the following giscus section, (1) Enable Discussions in your GitHub repository,
221+
# (2) Install the giscus app in your repository (details at https://giscus.app),
222+
# (3) Fill in *all* the parameters below
223+
# See more details about giscus and each of the following parameters at https://giscus.app
224+
#giscus:
225+
# hostname: giscus.app # Replace with your giscus instance's hostname if self-hosting
226+
# repository: # GitHub username/repository eg. "daattali/beautiful-jekyll"
227+
# repository-id: # ID of your repository, retrieve this info from https://giscus.app
228+
# category: Announcements # Category name of your GitHub Discussion posts
229+
# category-id: # ID of your category, retrieve this info from https://giscus.app
230+
# mapping: pathname
231+
# reactions-enabled: 1
232+
# emit-metadata: 0
233+
# theme: light
234+
235+
################
236+
# --- Misc --- #
237+
################
238+
239+
# Ruby Date Format to show dates of posts
240+
date_format: "%B %-d, %Y"
241+
242+
# Facebook App ID
243+
#fb_app_id: ""
244+
245+
#################################################################################
246+
# --- You don't need to touch anything below here (but you can if you want) --- #
247+
#################################################################################
248+
249+
# Output options (more information on Jekyll's site)
250+
timezone: "America/New_York"
251+
markdown: kramdown
252+
highlighter: rouge
253+
permalink: /:year-:month-:day-:title/
254+
paginate: 5
255+
256+
kramdown:
257+
input: GFM
258+
259+
# Default YAML values (more information on Jekyll's site)
260+
defaults:
261+
-
262+
scope:
263+
path: ""
264+
type: "posts"
265+
values:
266+
layout: "post"
267+
comments: true # add comments to all blog posts
268+
social-share: true # add social media sharing buttons to all blog posts
269+
-
270+
scope:
271+
path: "" # any file that's not a post will be a "page" layout by default
272+
values:
273+
layout: "page"
274+
275+
# Exclude these files from production site
276+
exclude:
277+
- CHANGELOG.md
278+
- CNAME
279+
- Gemfile
280+
- Gemfile.lock
281+
- LICENSE
282+
- README.md
283+
- screenshot.png
284+
- docs/
285+
286+
plugins:
287+
- jekyll-paginate
288+
- jekyll-sitemap
289+
290+
# Beautiful Jekyll / Dean Attali
291+
# 2fc73a3a967e97599c9763d05e564189

docs/assets/img/avatar-icon.png

15.9 KB
Loading

docs/assets/img/header.png

21.6 KB
Loading

screenshots/flowgorithm for mac.png

-25.8 KB
Loading

0 commit comments

Comments
 (0)