Skip to content

Commit 6b330a1

Browse files
committed
initial material starter site
0 parents  commit 6b330a1

Some content is hidden

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

86 files changed

+7631
-0
lines changed

.editorconfig

+14
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

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.bundle
2+
.sass-cache
3+
Gemfile.lock
4+
_site
5+
*.gem

404.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="container">
6+
<div class="section txt-center">
7+
<h1>404</h1>
8+
9+
<p><strong>Page not found :(</strong></p>
10+
<p>The requested page could not be found.</p>
11+
</div>
12+
</div>

CODE_OF_CONDUCT.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Marco Damiani
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
13+
all 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
21+
THE SOFTWARE.

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Jekyll Materialize Starter Template v0.1
2+
3+
*A Site Starter Materialize Templates.
4+
5+
The theme is a fork of the [minima][1]
6+
7+
![minima theme preview](/screenshot.png)
8+
9+
10+
# License
11+
12+
The theme is available as open source under the terms of the [MIT License][2].
13+
14+
[Materialize][3] a modern responsive front-end framework based on Material Design
15+
16+
Copyright © 2017 Marco Damiani. Powered by <a href="http://jekyllrb.com">Jekyll</a>
17+
18+
[1]: https://github.com/jekyll/minima
19+
[2]: https://opensource.org/licenses/MIT
20+
[3]: http://materializecss.com/

_config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
title: Starter Template
2+
author: Panoramedia
3+
4+
description: > # this means to ignore newlines until "baseurl:"
5+
A Site Starter Materialize Templates for Jekyll
6+
7+
twitter_username: macrod68
8+
github_username: macrod68
9+
10+
sass:
11+
style: compressed

_includes/disqus_comments.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% if page.comments != false and jekyll.environment == "production" %}
2+
3+
<div id="disqus_thread"></div>
4+
<script>
5+
var disqus_config = function () {
6+
this.page.url = '{{ page.url | absolute_url }}';
7+
this.page.identifier = '{{ page.url | absolute_url }}';
8+
};
9+
10+
(function() {
11+
var d = document, s = d.createElement('script');
12+
13+
s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14+
15+
s.setAttribute('data-timestamp', +new Date());
16+
(d.head || d.body).appendChild(s);
17+
})();
18+
</script>
19+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20+
{% endif %}

_includes/footer.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<footer class="page-footer orange">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col l6 s12">
5+
<h5 class="white-text">Company Bio</h5>
6+
<p class="grey-text text-lighten-4">We are a team of college students working on this project like it's our full time job. Any amount would help support and continue development on this project and is greatly appreciated.</p>
7+
</div>
8+
<div class="col l3 s12">
9+
<h5 class="white-text">Settings</h5>
10+
<ul>
11+
<li><a class="white-text" href="#!">Link 1</a></li>
12+
<li><a class="white-text" href="#!">Link 2</a></li>
13+
<li><a class="white-text" href="#!">Link 3</a></li>
14+
<li><a class="white-text" href="#!">Link 4</a></li>
15+
</ul>
16+
</div>
17+
<div class="col l3 s12">
18+
<h5 class="white-text">Connect</h5>
19+
<ul>
20+
<li><a class="white-text" href="#!">Link 1</a></li>
21+
<li><a class="white-text" href="#!">Link 2</a></li>
22+
<li><a class="white-text" href="#!">Link 3</a></li>
23+
<li><a class="white-text" href="#!">Link 4</a></li>
24+
</ul>
25+
</div>
26+
</div>
27+
</div>
28+
<div class="footer-copyright">
29+
<div class="container">
30+
<div>
31+
Made by <a target="_blank" class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
32+
<span style="text-align: right; float: right">
33+
Copyright © 2017 <a href="http://www.panoramedia.it" class="orange-text text-lighten-3">Marco Damiani</a>. Powered by <a target="_blank" href="http://jekyllrb.com/" class="orange-text text-lighten-3">Jekyll</a>
34+
</span>
35+
</div>
36+
</div>
37+
</div>
38+
</footer>

_includes/google-analytics.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', '{{ site.google_analytics }}', 'auto');
8+
ga('send', 'pageview');
9+
10+
</script>
11+

_includes/head.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<head>
2+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
3+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
4+
5+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
6+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}" />
7+
8+
9+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
10+
<link rel="stylesheet" type="text/css" media="screen,projection" href="{{ "/assets/materialize.css" | relative_url }}" />
11+
<link rel="stylesheet" type="text/css" media="screen,projection" href="{{ "/assets/main.css" | relative_url }}">
12+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}" />
13+
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}" />
14+
15+
{% if jekyll.environment == 'production' and site.google_analytics %}
16+
{% include google-analytics.html %}
17+
{% endif %}
18+
</head>

_includes/header.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<nav class="light-blue lighten-1" role="navigation">
2+
<div class="nav-wrapper container"><a id="logo-container" class="brand-logo" href="{{ "/" | relative_url }}">Logo</a>
3+
{% assign default_paths = site.pages | map: "path" %}
4+
{% assign page_paths = site.header_pages | default: default_paths %}
5+
6+
<ul class="right hide-on-med-and-down">
7+
<li><a href="{{ "/" | relative_url }}">Home </a></li>
8+
{% if page_paths %}
9+
{% for path in page_paths %}
10+
{% assign my_page = site.pages | where: "path", path | first %}
11+
{% if my_page.title %}
12+
<li><a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
13+
{% endif %}
14+
{% endfor %}
15+
{% endif %}
16+
</ul>
17+
18+
<ul id="nav-mobile" class="side-nav">
19+
<li><a href="#">Home</a></li>
20+
{% if page_paths %}
21+
{% for path in page_paths %}
22+
{% assign my_page = site.pages | where: "path", path | first %}
23+
{% if my_page.title %}
24+
<li><a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
25+
{% endif %}
26+
{% endfor %}
27+
{% endif %}
28+
</ul>
29+
30+
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
31+
</div>
32+
</nav>

_includes/script.html

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<!-- Scripts-->
2+
<script src="{{ "js/jquery.min.js" | relative_url }}"></script>
3+
<script src="{{ "js/materialize.min.js" | relative_url }}"></script>
4+
<script src="{{ "js/init.js" | relative_url }}"></script>

_layouts/default.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
10+
11+
{{ content }}
12+
13+
{% include footer.html %}
14+
15+
{% include script.html %}
16+
17+
</body>
18+
19+
</html>

_layouts/home.html

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="section no-pad-bot" id="index-banner">
6+
<div class="container">
7+
<br><br>
8+
<h1 class="header center orange-text">{{ site.title }}</h1>
9+
<div class="row center">
10+
<h5 class="header col s12 light">{{ content }}</h5>
11+
</div>
12+
13+
<div class="row center">
14+
<a href="http://materializecss.com/getting-started.html" id="download-button" class="btn-large waves-effect waves-light orange">Get Started</a>
15+
</div>
16+
<br><br>
17+
18+
</div>
19+
</div>
20+
21+
<div class="container">
22+
<div class="section">
23+
24+
<!-- Icon Section -->
25+
<div class="row">
26+
<div class="col s12 m4">
27+
<div class="icon-block">
28+
<h2 class="center light-blue-text"><i class="material-icons">flash_on</i></h2>
29+
<h5 class="center">Speeds up development</h5>
30+
31+
<p class="light">We did most of the heavy lifting for you to provide a default stylings that incorporate our custom components. Additionally, we refined animations and transitions to provide a smoother experience for developers.</p>
32+
</div>
33+
</div>
34+
35+
<div class="col s12 m4">
36+
<div class="icon-block">
37+
<h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
38+
<h5 class="center">User Experience Focused</h5>
39+
40+
<p class="light">By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.</p>
41+
</div>
42+
</div>
43+
44+
<div class="col s12 m4">
45+
<div class="icon-block">
46+
<h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
47+
<h5 class="center">Easy to work with</h5>
48+
49+
<p class="light">We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.</p>
50+
</div>
51+
</div>
52+
</div>
53+
54+
</div>
55+
56+
</div>
57+
<div style="background: #ddd">
58+
<div class="container last-post">
59+
<section>
60+
<h5>Latest Post</h5>
61+
<ul class="collection">
62+
{% for post in site.posts %}
63+
<li class="collection-item avatar">
64+
{% assign date_format = site.minima.date_format | default: "%m/%d" %}
65+
<div class="date-post">{{ post.date | date: date_format }}</div>
66+
<span class="title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></span>
67+
<p>
68+
{{ post.content | truncatewords: 10 }}
69+
</p>
70+
<a href="{{ post.url | relative_url }}" class="secondary-content"><i class="material-icons">navigate_next</i></a>
71+
</li>
72+
{% endfor %}
73+
</ul>
74+
</section>
75+
</div>
76+
</div>
77+
78+
</div>

0 commit comments

Comments
 (0)