Skip to content

Commit ea0f8c4

Browse files
committed
ramesaliyev uyarlama ilk adım
1 parent 4a6b8d9 commit ea0f8c4

File tree

17 files changed

+139
-180
lines changed

17 files changed

+139
-180
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# jekyll related files
12
_site
3+
.jekyll-metadata
4+
5+
# sass
26
.sass-cache
7+
8+
# ruby
39
Gemfile.lock
10+
11+
# webstorm
12+
.idea
13+
14+
# mac
15+
.DS_Store

404.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

_config.yml

Lines changed: 35 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,44 @@
1-
# Basic
2-
name: "ramesaliyev"
1+
# General
2+
name : 'rames'
3+
surname : 'aliyev'
4+
fullname : 'ramesaliyev'
5+
fullname_human : 'Rameş Aliyev'
36

4-
# URL
5-
baseurl: ""
6-
permalink: :title.html
7-
relative_permalinks: true
8-
url: http://ramesaliyev.github.io
9-
title: ramesaliyev
10-
description: 'Rameş Aliyev'
11-
paginate: 100
7+
# Info
8+
description : "Rameş Aliyev'in kişisel web sitesi."
9+
keywords : 'javascript, ecmascript, es6'
1210

13-
# Markdown
14-
markdown: rdiscount
11+
# System
12+
timezone : 'Europe/Istanbul'
13+
include : ['_pages']
1514

16-
# Navigation
17-
nav:
18-
- name: "About"
19-
href: "//ramesaliyev.github.io/about"
15+
# Filtering Content
16+
show_drafts : null
17+
limit_posts : 0
18+
19+
# Conversion
20+
markdown : kramdown
21+
excerpt_separator : <!--more-->
22+
23+
# Outputting
24+
baseurl : ''
25+
permalink : :title.html
2026

2127
# Sass
22-
sass:
23-
style: :compressed
28+
sass :
29+
style : :compressed
2430

2531
# Scopes
2632
defaults:
33+
-
34+
scope :
35+
path : ''
36+
type : 'pages'
37+
values :
38+
layout : 'page'
2739
-
28-
scope:
29-
path: ""
30-
type: "pages"
31-
values:
32-
layout: "page"
33-
-
34-
scope:
35-
path: ""
36-
type: "posts"
37-
values:
38-
layout: "post"
40+
scope :
41+
path : ''
42+
type : 'posts'
43+
values :
44+
layout : 'post'

_data/nav.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Navigation
2+
-
3+
name: "hakkımda"
4+
href: "/hakkimda.html"

_includes/foot.html

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

_includes/head.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<head>
2+
<!-- Meta -->
3+
<meta charset="utf-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<title>{% if page.title %}{{site.fullname}} | {{page.title}}{% else %}{{site.fullname}}{% endif %}</title>
6+
<meta name="description" content="{% if page.excerpt %}{{page.excerpt | strip_html}}{% else %}{{site.description}}{% endif %}">
7+
<meta name="keywords" content="{% if page.tags %}{{page.tags | join:', '}}{% else %}{{site.keywords}}{% endif %}">
8+
<meta name="author" content="{{site.fullname_human}}">
9+
10+
<!-- Assets -->
11+
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
12+
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/style.css">
13+
</head>

_layouts/default.html

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.name }}{% endif %}</title>
7-
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
8-
<link rel="stylesheet" href="{{ site.baseurl }}/style.css">
9-
</head>
10-
<body>
11-
<div class="container">
12-
{{ content }}
13-
</div>
14-
</body>
15-
</html>
3+
{% include head.html %}
4+
<body>
5+
<div class="container">
6+
{{ content }}
7+
</div>
8+
{% include foot.html %}
9+
</body>
10+
</html>

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
---
44
<header class="masthead">
55
<h1 class="masthead-title--small">
6-
<a href="{{ site.baseurl }}/">{{ site.name }}</a>
6+
<a href="{{ site.baseurl }}/">{{ site.fullname }}</a>
77
</h1>
88
</header>
99
<div class="content page">

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
---
44
<header class="masthead">
55
<h1 class="masthead-title--small">
6-
<a href="{{ site.baseurl }}/">{{ site.name }}</a>
6+
<a href="{{ site.baseurl }}/">{{site.fullname}}</a>
77
</h1>
88
</header>
99
<div class="content post">

_pages/404.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Böyle bir sayfa yok, hiç olmadı.
3+
permalink: /404.html
4+
---
5+
6+
Muhtemelen adres barına tıklayıp klavye üzerinde tepindin, bravo.<br>
7+
Diğer türlü kusura bakma kardeş.

_pages/hakkimda.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Hakkımda
3+
permalink: /hakkimda.html
4+
---
5+
6+
Selamlar, ben Rameş Aliyev. 89' çıkışlı JavaScript geliştiriciyim. İstanbul'da varlığımı sürdürmekteyim. Bu sayfayı yazmaktan nefret ediyorum. Daha fazla devam edemeyeceğim. Şunlara bakın;
7+
8+
### bağlantılarım
9+
- <a href="https://github.com/ramesaliyev" target="_blank">github</a>
10+
- <a href="https://medium.com/@ramesaliyev" target="_blank">medium</a>
11+
- <a href="https://www.linkedin.com/in/ramesaliyev" target="_blank">linkedin</a>
12+
13+
### konuşmacıydım
14+
- 01.08.2015 - <a href="http://jsninjas.org" target="_blank">JSNinjas</a> - <a href="http://jsninjas.org/free-for-all" target="_blank">Free For All</a>
15+
- 20.06.2015 - <a href="http://htmlmag.com/" target="_blank">HTMLMag</a> - <a href="http://htmlmag.com/etkinlik/the-frontiers-mini" target="_blank">The Frontiers:Mini</a> - <a href="https://speakerdeck.com/ramesaliyev/flux-react-ve-modern-front-end-javascript-mimarisi" target="_blank">Slayt</a>
16+
17+
### iletişim
18+
- <a href="https://twitter.com/ramesaliyev">@ramesaliyev</a>
19+
- <a href="javascript:void(0)">creator {et} ramesaliyev {nokta} com</a>

_posts/2015-08-08-whats-jekyll.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

_posts/2015-08-09-example-content.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

style.scss renamed to _sass/main.scss

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
---
2-
---
3-
41
* {
52
-webkit-box-sizing: border-box;
63
-moz-box-sizing: border-box;
@@ -37,7 +34,7 @@ a {
3734

3835
&:hover,
3936
&:focus {
40-
text-decoration: underline;
37+
text-decoration: none;
4138
}
4239
}
4340

@@ -84,7 +81,7 @@ dd {
8481
}
8582

8683
ul {
87-
list-style: inside circle;
84+
list-style: inside disc;
8885
padding-left: 0;
8986

9087
li {
@@ -201,6 +198,9 @@ pre code {
201198

202199
.highlight pre {
203200
margin-bottom: 0;
201+
padding: 13px 15px;
202+
border: 1px solid #ddd;
203+
border-radius: 5px;
204204
}
205205

206206
.gist .gist-file {
@@ -281,18 +281,12 @@ tbody tr:nth-child(odd) th {
281281
text-decoration: none;
282282
}
283283
}
284-
285-
span {
286-
color: #ddd;
287-
}
288-
289284
}
290285

291286
&-title--small {
292287
margin-bottom: .75rem;
293288
font-size: .75rem;
294289
font-weight: 600;
295-
text-transform: uppercase;
296290

297291
a {
298292
color: #333;
@@ -303,6 +297,13 @@ tbody tr:nth-child(odd) th {
303297
}
304298
}
305299
}
300+
301+
&-title,
302+
&-title--small {
303+
span {
304+
color: #ddd;
305+
}
306+
}
306307

307308
.masthead-nav {
308309
margin-bottom: 2rem;
@@ -360,10 +361,13 @@ tbody tr:nth-child(odd) th {
360361
}
361362
}
362363
&-post-date {
363-
margin-bottom: 1rem;
364364
font-size: .75rem;
365365
text-transform: uppercase;
366366
}
367+
&-post-summary {
368+
margin-bottom: 1rem;
369+
font-size: 1rem !important;
370+
}
367371
}
368372

369373
.projects-list {
@@ -433,4 +437,4 @@ tbody tr:nth-child(odd) th {
433437
.highlight .vg { color: #008080 } /* Name.Variable.Global */
434438
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
435439
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
436-
440+
.highlight .lineno { color: #ddd; margin-left: -5px; font-weight: normal; margin-right: 0px; }

0 commit comments

Comments
 (0)