Skip to content

Commit 8829fe8

Browse files
committed
Initial commit
1 parent f2ccd09 commit 8829fe8

File tree

12 files changed

+129
-0
lines changed

12 files changed

+129
-0
lines changed

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll', '~>3.6'
4+
5+
group :jekyll_plugins do
6+
gem 'jekyll-sitemap'
7+
gem 'jekyll-feed'
8+
end

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# nedellcona-com
2+
3+
Nedellcona.com parking page

_config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
app:
2+
title: 'Phalcon Website'
3+
name: 'Phalcon Website'
4+
author: 'Phalcon Team'
5+
description: 'Official Phalcon Documentation'
6+
keywords: 'php, phalcon, phalcon php, php framework, faster php framework, php extension, next generation framework, docs, documentation'
7+
8+
9+
kramdown:
10+
input: GFM
11+
syntax_highlighter_opts:
12+
disable: true
13+
14+
exclude:
15+
- vendor
16+
- Gemfile
17+
- Gemfile.lock
18+
- LICENSE
19+
- README.md
20+
- serve
21+
22+
23+

_layouts/default.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport"
6+
content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<meta name="description"
8+
content="{{ site.app.description }}">
9+
<meta name="author" content="{{ site.app.author }}">
10+
<meta name="generator" content="Netlify - Jekyll">
11+
12+
<title>{{ site.app.title }}</title>
13+
14+
<link rel="stylesheet"
15+
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
16+
integrity="sha256-eSi1q2PG6J7g7ib17yAaWMcrr5GrtohYChqibrV7PBE="
17+
crossorigin="anonymous" />
18+
<link rel="stylesheet"
19+
href="/assets/css/site.css" />
20+
</head>
21+
22+
<body>
23+
<div class="container">
24+
<div class="text-center">
25+
<img class="logo" src="https://assets.phalconphp.com/phalcon/images/phalcon-logo.png"
26+
title="{{ site.app.title }}"
27+
alt="{{ site.app.title }}" />
28+
</div>
29+
<div class="text-center">
30+
To get in touch, please email us at
31+
<a href="mailto:{{ site.app.email }}">{{ site.app.email }}</a>
32+
</div>
33+
</div>
34+
35+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.min.js"
36+
integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
37+
crossorigin="anonymous"></script>
38+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/esm/popper.min.js"
39+
integrity="sha256-T0gPN+ySsI9ixTd/1ciLl2gjdLJLfECKvkQjJn98lOs="
40+
crossorigin="anonymous"></script>
41+
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.min.js"
42+
integrity="sha256-VsEqElsCHSGmnmHXGQzvoWjWwoznFSZc6hs7ARLRacQ="
43+
crossorigin="anonymous"></script>
44+
<script defer src="https://use.fontawesome.com/releases/v5.6.1/js/all.js"
45+
integrity="sha384-R5JkiUweZpJjELPWqttAYmYM1P3SNEJRM6ecTQF05pFFtxmCO+Y1CiUhvuDzgSVZ"
46+
crossorigin="anonymous"></script>
47+
</body>
48+
</html>

_redirects

Whitespace-only changes.

assets/css/site.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.container {
2+
position:absolute;
3+
left:0;
4+
right:0;
5+
top:0;
6+
bottom:0;
7+
margin:auto;
8+
height: 400px;
9+
max-width:100%;
10+
max-height:100%;
11+
overflow:auto;
12+
}
13+
14+
.logo {
15+
height: 260px;
16+
margin-bottom: 50px;
17+
}
18+
19+
.statement {
20+
}

assets/images/transferpricingcy.png

39.1 KB
Loading

boxfile.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
run.config:
2+
engine: ruby
3+
4+
extra_steps:
5+
- gem install jekyll bundler

humans.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* TEAM */
2+
3+
Chef: Nikolaos (Nikos) Dimopoulos
4+
Contact: domains [at] niden.net
5+
GitHub: @niden
6+
From: Charles Town, WV, USA
7+
8+
/* SITE */
9+
10+
Last update: 2019/01/06
11+
Doctype: HTML5
12+
Standards: HTML5, CSS3
13+
Components: Jekyll, Twitter Bootstrap, jQuery, Netlify
14+

index.html

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

robots.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Allow: /

serve

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
bundle exec jekyll serve --host 0.0.0.0 --port 4000 --verbose

0 commit comments

Comments
 (0)