Skip to content

Commit 0a8e5e2

Browse files
author
livacengiz
committed
Camel Community v2 update
1 parent 7a07e47 commit 0a8e5e2

Some content is hidden

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

53 files changed

+4022
-95
lines changed

.DS_Store

0 Bytes
Binary file not shown.

404.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: "404: Page not found"
4+
---
5+
6+
<div class="page">
7+
<h1 class="page-title">404: Page not found</h1>
8+
<img src="/public/img/404camel.gif" alt="" >
9+
<p class="lead">Üzgünüz. Böyle bir deve bulunamadı. <a href="/">Anasayfaya tekrar dönebilirsin</a></p>
10+
</div>

CNAME

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

README.md

100644100755
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# camelware.github.io
2-
Camel Programing Community
3-
Index/
1+
2+
============================
3+
4+
[Jekyll](http://jekyllrb.com), ile olusturulan Camel Community web sayfasinin kaynak kodlarini icerir.

_config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Dependencies
2+
markdown: kramdown
3+
highlighter: pygments
4+
5+
# Permalinks
6+
permalink: pretty
7+
8+
# Setup
9+
title: 'Camelware Community'
10+
url: http://Camelware.github.io
11+
baseurl: /
12+
13+
github:
14+
repo: https://github.com/Camelware
15+
16+
author:
17+
name: 'Camel Community'
18+
url: camelware.github.io

_includes/head.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
5+
<!-- Enable responsiveness on mobile devices-->
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
7+
8+
<title>
9+
{% if page.title %}
10+
{{ page.title }} &middot; {{ site.title }}
11+
{% else %}
12+
{{ site.title }} &middot; {{ site.tagline }}
13+
{% endif %}
14+
</title>
15+
16+
<!-- CSS -->
17+
<link rel="stylesheet" href="/public/css/poole.css">
18+
<link rel="stylesheet" href="/public/css/hyde.css">
19+
<link rel="stylesheet" href="/public/css/rjow.css">
20+
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
21+
22+
<!-- Icons -->
23+
<link rel="shortcut icon" href="/public/favicon.png">
24+
</head>

_includes/sidebar.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<div class="sidebar">
2+
<div class="container sidebar-sticky">
3+
<div class="sidebar-about">
4+
<a href="/"><img src="/public/img/logo.png" alt="" id="logo"></a>
5+
<h1>{{ site.title }}</h1>
6+
<p class="lead">Atla Deve değil ya! <a href="{{ site.github.repo }}">@GitHub</a></p>
7+
</div>
8+
9+
<ul class="sidebar-nav">
10+
<li class="sidebar-nav-item{% if page.title == "Home" %} active{% endif %}">
11+
<a href="/">Anasayfa</a>
12+
</li>
13+
<li class="sidebar-nav-item{% if page.step == 1 %} active{% endif %}">
14+
<a href="/camelipsum">Camel Ipsum</a>
15+
</li>
16+
<li class="sidebar-nav-item{% if page.step == 2 %} active{% endif %}">
17+
<a href="/arabtheme">Arab Theme</a>
18+
</li>
19+
<li class="sidebar-nav-item{% if page.step == 3 %} active{% endif %}">
20+
<a href="/nazimhikmetrun">Nazim Hikmet.run()</a>
21+
</li>
22+
<li class="sidebar-nav-item{% if page.step == 4 %} active{% endif %}">
23+
<a href="/cameltheme">Camel Theme</a>
24+
</li>
25+
26+
</ul>
27+
</div>
28+
</div>

_layouts/default.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
{% include head.html %}
5+
6+
<body class="theme-jekyll">
7+
{% include sidebar.html %}
8+
9+
<div class="content container">
10+
{{ content }}
11+
</div>
12+
13+
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-46834633-3', 'auto');ga('send', 'pageview');</script>
14+
</body>
15+
</html>

_layouts/page.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="page">
6+
{% if page.step %}
7+
<span class="step">{{ page.step }}</span>
8+
{% endif %}
9+
<h1 class="page-title">{{ page.title }}</h1>
10+
{{ content }}
11+
<p>Copyright &copy; {{ site.time | date: '%Y' }} {{ site.author.name }}, licensed under <a href="https://twitter.com/juthilo" target="_blank">CC-BY-3.0</a>.
12+
</div>

_sass/_base.scss

Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
/**
2+
* Reset some basic elements
3+
*/
4+
body, h1, h2, h3, h4, h5, h6,
5+
p, blockquote, pre, hr,
6+
dl, dd, ol, ul, figure {
7+
margin: 0;
8+
padding: 0;
9+
}
10+
11+
12+
13+
/**
14+
* Basic styling
15+
*/
16+
body {
17+
font-family: $base-font-family;
18+
font-size: $base-font-size;
19+
line-height: $base-line-height;
20+
font-weight: 300;
21+
color: $text-color;
22+
background-color: $background-color;
23+
-webkit-text-size-adjust: 100%;
24+
}
25+
26+
27+
28+
/**
29+
* Set `margin-bottom` to maintain vertical rhythm
30+
*/
31+
h1, h2, h3, h4, h5, h6,
32+
p, blockquote, pre,
33+
ul, ol, dl, figure,
34+
%vertical-rhythm {
35+
margin-bottom: $spacing-unit / 2;
36+
}
37+
38+
39+
40+
/**
41+
* Images
42+
*/
43+
img {
44+
max-width: 100%;
45+
vertical-align: middle;
46+
}
47+
48+
49+
50+
/**
51+
* Figures
52+
*/
53+
figure > img {
54+
display: block;
55+
}
56+
57+
figcaption {
58+
font-size: $small-font-size;
59+
}
60+
61+
62+
63+
/**
64+
* Lists
65+
*/
66+
ul, ol {
67+
margin-left: $spacing-unit;
68+
}
69+
70+
li {
71+
> ul,
72+
> ol {
73+
margin-bottom: 0;
74+
}
75+
}
76+
77+
78+
79+
/**
80+
* Headings
81+
*/
82+
h1, h2, h3, h4, h5, h6 {
83+
font-weight: 300;
84+
}
85+
86+
87+
88+
/**
89+
* Links
90+
*/
91+
a {
92+
color: $brand-color;
93+
text-decoration: none;
94+
95+
&:visited {
96+
color: darken($brand-color, 15%);
97+
}
98+
99+
&:hover {
100+
color: $text-color;
101+
text-decoration: underline;
102+
}
103+
}
104+
105+
106+
107+
/**
108+
* Blockquotes
109+
*/
110+
blockquote {
111+
color: $grey-color;
112+
border-left: 4px solid $grey-color-light;
113+
padding-left: $spacing-unit / 2;
114+
font-size: 18px;
115+
letter-spacing: -1px;
116+
font-style: italic;
117+
118+
> :last-child {
119+
margin-bottom: 0;
120+
}
121+
}
122+
123+
124+
125+
/**
126+
* Code formatting
127+
*/
128+
pre,
129+
code {
130+
font-size: 15px;
131+
border: 1px solid $grey-color-light;
132+
border-radius: 3px;
133+
background-color: #eef;
134+
}
135+
136+
code {
137+
padding: 1px 5px;
138+
}
139+
140+
pre {
141+
padding: 8px 12px;
142+
overflow-x: scroll;
143+
144+
> code {
145+
border: 0;
146+
padding-right: 0;
147+
padding-left: 0;
148+
}
149+
}
150+
151+
152+
153+
/**
154+
* Wrapper
155+
*/
156+
.wrapper {
157+
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
158+
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
159+
margin-right: auto;
160+
margin-left: auto;
161+
padding-right: $spacing-unit;
162+
padding-left: $spacing-unit;
163+
@extend %clearfix;
164+
165+
@include media-query($on-laptop) {
166+
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
167+
max-width: calc(#{$content-width} - (#{$spacing-unit}));
168+
padding-right: $spacing-unit / 2;
169+
padding-left: $spacing-unit / 2;
170+
}
171+
}
172+
173+
174+
175+
/**
176+
* Clearfix
177+
*/
178+
%clearfix {
179+
180+
&:after {
181+
content: "";
182+
display: table;
183+
clear: both;
184+
}
185+
}
186+
187+
188+
189+
/**
190+
* Icons
191+
*/
192+
.icon {
193+
194+
> svg {
195+
display: inline-block;
196+
width: 16px;
197+
height: 16px;
198+
vertical-align: middle;
199+
200+
path {
201+
fill: $grey-color;
202+
}
203+
}
204+
}

0 commit comments

Comments
 (0)