Skip to content

Commit d4f73a7

Browse files
committed
Delete vuejs
1 parent 6f93c5d commit d4f73a7

27 files changed

+1565
-13
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,6 @@ docs/_build/
107107
target/
108108

109109
# Frontend
110-
node_modules/
110+
node_modules/
111+
112+
sources/_site/

README.MD

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SPb Python Guru
1+
# SPb Python Interest Group
22

3-
SPb Python Guru — Сообщество Python-программистов Санкт-Петербурга.
3+
SPb Python Interest Group — Сообщество Python-программистов Санкт-Петербурга.
44

55
## Встречи в оффлайне
66

docker-compose.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ services:
77
volumes:
88
- './sources:/site'
99
command: serve --watch
10-

sources/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
.sass-cache

sources/_config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Site settings
2+
title: SPb Python Interest Group
3+
email: your-email@domain.com
4+
description: Добро пожаловать в SPb Python Interest Group — Сообщество Python-программистов Санкт-Петербурга. Здесь вы найдёте ссылки на нашу онлайн и оффлайн жизнь.
5+
baseurl: ""
6+
url: "https://spbpython.github.io"
7+
twitter_username: spbpython
8+
github_username: spbpython
9+
10+
# Build settings
11+
markdown: kramdown

sources/_includes/footer.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
2+
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
3+
crossorigin="anonymous"></script>
4+
<script src='{{ "/js/jquery.fullPage.min.js" | prepend: site.baseurl }}'></script>
5+
6+
<script>
7+
$(document).ready(function () {
8+
$('#fullpage').fullpage({
9+
anchors: ['wellcome', 'community', 'links'],
10+
navigation: true,
11+
navigationPosition: 'right',
12+
navigationTooltips: ['First', 'Second', 'Third']
13+
})
14+
})
15+
16+
</script>
17+
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
18+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
19+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
20+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
21+
22+
ga('create', 'UA-79740711-1', 'auto');
23+
ga('send', 'pageview');
24+
25+
</script>

sources/_includes/head.html

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width initial-scale=1"/>
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{{ site.description }}">
8+
9+
<meta charset=utf-8>
10+
<title>{{ site.title }}</title>
11+
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
12+
13+
<!-- title -->
14+
<title>{{ site.title }}</title>
15+
<meta name=twitter:title content="{{ site.title }}">
16+
<meta property=og:title content="{{ site.title }}">
17+
18+
<!-- description -->
19+
<meta name=description content="{{ site.description }}">
20+
<meta name=twitter:description content="{{ site.description }}">
21+
<meta property=og:description content="{{ site.description }}">
22+
23+
<!-- image -->
24+
<meta name=twitter:image:src content=//spbpython.github.io/static/img/socialnetworks.jpg>
25+
<meta property=og:image content=//spbpython.github.io/static/img/socialnetworks.jpg>
26+
<link rel=image_src href=//spbpython.github.io/static/img/socialnetworks.jpg>
27+
28+
<!-- another meta -->
29+
<meta property=og:type content=website>
30+
<meta name=twitter:card content=summary>
31+
<meta property=og:url
32+
content="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
33+
<meta property=twitter:url
34+
content="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
35+
<link rel=canonical href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
36+
37+
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
38+
39+
<meta name=HandheldFriendly content=true>
40+
<meta name=theme-color content=#212121>
41+
42+
<!-- fonts -->
43+
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400&subset=latin,cyrillic" rel=stylesheet
44+
type=text/css>
45+
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic" rel=stylesheet
46+
type=text/css>
47+
48+
49+
<link rel="stylesheet" href='{{ "/css/normalize.css" | prepend: site.baseurl }}'>
50+
<link rel="stylesheet" href='{{ "/css/app.css" | prepend: site.baseurl }}'>
51+
<link rel="stylesheet" href='{{ "/css/jquery.fullPage.css" | prepend: site.baseurl }}'>
52+
53+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
54+
</head>

sources/_includes/header.html

Whitespace-only changes.

sources/_layouts/default.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
{% include head.html %}
4+
<body>
5+
6+
{% include header.html %}
7+
8+
{{ content }}
9+
10+
{% include footer.html %}
11+
</body>
12+
</html>

sources/_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

sources/_layouts/post.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>

sources/about.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/)
8+
9+
You can find the source code for the Jekyll new theme at: [github.com/jglovier/jekyll-new](https://github.com/jglovier/jekyll-new)
10+
11+
You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll)

sources/css/app.css

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
html {
2+
height: 100%;
3+
4+
}
5+
6+
body {
7+
height: 100%;
8+
font-family: 'Roboto', sans-serif;
9+
color: #fff;
10+
}
11+
12+
h1, h2, h3, h4, h5, h6 {
13+
font-family: 'Roboto Condensed', sans-serif;
14+
}
15+
16+
h1 {
17+
font-size: 4em;
18+
margin-bottom: .2em
19+
}
20+
21+
p {
22+
font-size: 1.25em;
23+
}
24+
25+
a {
26+
color: #fff;
27+
}
28+
29+
/* Centered texts in each section
30+
* --------------------------------------- */
31+
32+
.section {
33+
text-align: center;
34+
background-size: cover;
35+
}
36+
.slide {
37+
background-size: cover;
38+
}
39+
40+
.intro {
41+
width: 100%;
42+
padding: 30px 0 50px 0;
43+
background-color: rgba(0,0,0,.25);
44+
text-shadow: 0.1em 0.1em 0.2em #000;
45+
}
46+
47+
/* Overwriting styles for control arrows for slides
48+
* --------------------------------------- */
49+
.controlArrow.prev {
50+
left: 50px;
51+
}
52+
53+
.controlArrow.next{
54+
right: 50px;
55+
}
56+
57+
#section-first {
58+
background-image: url(../images/backgrounds/spb1.jpg);
59+
}
60+
#section-second {
61+
background-image: url(../images/backgrounds/spb2.jpg);
62+
}
63+
#section-third {
64+
background-image: url(../images/backgrounds/spb3.jpg);
65+
}
66+
67+
68+
.meetup {
69+
width: 150px;
70+
}
71+
.telegram {
72+
width: 150px;
73+
margin-left: 30px;
74+
}
75+
.google-plus {
76+
width: 150px;
77+
}

0 commit comments

Comments
 (0)