Skip to content

Commit 882c1eb

Browse files
committed
Init
0 parents  commit 882c1eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+3771
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.gem
2+
.bundle
3+
.sass-cache
4+
_site
5+
Gemfile.lock
6+
.DS_Store

404.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
layout: 404
3+
---

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
gemspec
5+

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 MATF Functional Programming
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# MATF-Functional-Programming.github.io

_config.yml

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
# Website: https://github.com/jeffreytse/jekyll-theme-yat
2+
#
3+
# You can do anything you want, including projects for your clients, as long
4+
# as you mention an attribution back (credit links in footer or project).
5+
# See the LICENCE file.
6+
#
7+
# This config file is meant for settings that affect your whole blog, values
8+
# which you are expected to set up once and rarely edit after that.
9+
#
10+
# For technical reasons, this file is *NOT* reloaded automatically when you
11+
# use 'bundle exec jekyll serve'. If you change this file, please restart
12+
# the server process.
13+
#
14+
# Site settings
15+
# These are used to personalize your new site. If you look in the HTML files,
16+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
17+
# You can create any custom variable you would like, and they will be accessible
18+
# in the templates via {{ site.myvariable }}.
19+
20+
title: Funkcionalno programiranje - MATF
21+
email: matffunkcionalnoprogramiranje@gmail.com
22+
author: ivan-ristovic
23+
24+
# Copyright setting
25+
# You can use any html code, currently below placeholders are available:
26+
# * current year: {currentYear}
27+
# * author: {author} (Value is the same as site.author)
28+
# * copyright: (c) - ©
29+
# * copyleft: (cleft)
30+
# * sound recording copyright: (p) - ℗
31+
#
32+
# For example:
33+
# "Copyright (c) 2017-{currentYear} <a href="https://example.com">{author}</a>"
34+
# "Copyright © 2017-2021 Foobar"
35+
#
36+
copyright: "Matematički fakultet (cleft) 2022-{currentYear} {author}"
37+
38+
description: >- # this means to ignore newlines until "baseurl:"
39+
Stranica za kurs Funkcionalno programiranje na Matematičkom fakultetu Univerziteta u Beogradu.
40+
41+
baseurl: "" # the subpath of your site, e.g. /blog
42+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
43+
favicon: "" # the favicon for your site
44+
45+
# Yat date format
46+
# refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
47+
yat:
48+
date_format: "%b %d, %Y"
49+
50+
# If you want more debug log, you can set true
51+
# debug: false
52+
53+
# If you don't want transparent header, you can set false
54+
header_transparent: false
55+
56+
# If you want to change the content width, you can set to another value
57+
content_width: "920px"
58+
59+
# Google analytics
60+
# google_analytics: [Tracking ID]
61+
62+
# If you want to generate website sitemap, you can set true
63+
# sitemap: false
64+
65+
# If you want to change site language, you can set lang option
66+
# lang: "en" # default lang is en
67+
68+
# Translate languges
69+
# langs refer to https://cloud.google.com/translate/docs/languages
70+
# translate_langs:
71+
# - lang: en
72+
# img: https://cdn.countryflags.com/thumbs/united-states-of-america/flag-400.png
73+
# text: English
74+
75+
# You can choose a theme color
76+
# Default theme colors as below:
77+
# coolblack: #090a0b
78+
# spacegrey: #353535
79+
# snowwhite: #ffffff
80+
#
81+
theme_color: spacegray
82+
#
83+
# Custom color as below:
84+
# theme_color: "#882250"
85+
86+
# You can choose a brand color
87+
# Default brand colors as below:
88+
# orangered: #ff5100
89+
# greatgold: #f2cb05
90+
# greenblue: #389092
91+
#
92+
# brand_color: orangered
93+
#
94+
# Custom color as below:
95+
# brand_color: "#1a8e42"
96+
97+
# Night/Dark mode
98+
# Default mode is "auto", "auto" is for auto nightshift
99+
# (19:00 - 07:00), "manual" is for manual toggle, and
100+
# "on/off" is for default on/off.
101+
#
102+
# Whatever the user's choice is, it will supersede the
103+
# default setting of the site and be kept during the
104+
# visit (session). Only the dark mode setting is"manual",
105+
# it will be always kept on every visit (i.e. no matter
106+
# the browser is closed or not)
107+
#
108+
# night_mode: "auto"
109+
110+
# Code badge setting
111+
# You can enable or disable the code badge and so on
112+
code_badge:
113+
enabled: "false"
114+
color: "#fff"
115+
background_color: "#ff4e00"
116+
text_transform: "uppercase" # ("uppercase", "lowercase", "capitalize")
117+
118+
# If you want to link only specific pages in your header, uncomment
119+
# this and add the path to the pages in order as they should show up
120+
header_pages:
121+
- index.html
122+
- about.md
123+
- archives.html
124+
- categories.html
125+
# - tags.html
126+
127+
# Page default value
128+
# defaults:
129+
# home:
130+
# heading: "Your awesome heading"
131+
# subheading: "Your awesome subheading"
132+
# banner: "Your image url"
133+
134+
# Banner default settings
135+
# These banner settings are for global banner default, but you can also
136+
# config it by the front matter for one specific post
137+
# banner:
138+
# video: null # Video banner source
139+
# loop: true # Video loop
140+
# volume: 0 # Video volume (100% is 1.0)
141+
# start_at: 0 # Video start time
142+
# image: null # Image banner source
143+
# opacity: 1.0 # Banner opacity (100% is 1.0)
144+
# background: "rgba(0, 0, 0, 0.8)" # Banner background (Could be a image)
145+
# height: "640px" # Banner default height
146+
# min_height: null # Banner minium height
147+
# heading_style: null # Custom heading style (e.g. "font-weight: bold; text-decoration: underline")
148+
# subheading_style: null # Custom subheading style (e.g. color: gold)
149+
150+
# Excerpt size setting
151+
# excerpt_size: 350
152+
153+
# Pagination setting
154+
paginate: 10
155+
156+
# Disqus comments
157+
# disqus:
158+
# shortname: "Your Disqus username"
159+
160+
# Gitment comments
161+
# gitment:
162+
# username: "Your GitHub username"
163+
# repo: "The repo to store comments"
164+
# client_id: "Your client ID"
165+
# client_secret: "Your client secret"
166+
# redirect_uri: "Your redirect url" # If you use a custom domain name
167+
168+
# Build settings
169+
# highlighter: none
170+
markdown: kramdown
171+
kmarkdown:
172+
input: GFM
173+
174+
plugins:
175+
- jekyll-feed
176+
- jekyll-seo-tag
177+
- jekyll-sitemap
178+
- jekyll-paginate
179+
- jekyll-spaceship

_data/defaults.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
home:
2+
heading: "Funkcionalno programiranje"
3+
subheading: "Matematički fakultet, Univerzitet u Beogradu"
4+
banner: "your awesome url"

_data/translate_langs.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Translate languges
2+
# langs refer to https://cloud.google.com/translate/docs/languages
3+
4+
- lang: en
5+
img: https://cdn.countryflags.com/thumbs/united-states-of-america/flag-400.png
6+
text: English
7+

_includes/custom-head.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{% comment %}
2+
Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons:
3+
4+
1. Head over to https://realfavicongenerator.net/ to add your own favicons.
5+
2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
6+
{% endcomment %}

0 commit comments

Comments
 (0)