Skip to content

Commit f614648

Browse files
committed
prajyukttam
0 parents  commit f614648

Some content is hidden

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

90 files changed

+10148
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

LICENSE.txt

+63
Large diffs are not rendered by default.

README.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2+
Spectral by HTML5 UP
3+
html5up.net
4+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5+
6+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)

_config.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Welcome to Jekyll!
2+
#
3+
# Site settings
4+
title: Prajyukttam
5+
description: |
6+
Explore. Innovate. Inspire.
7+
owner: Your Name # or company name
8+
first_published: 2016 # if migrating another site, the year of your first publish
9+
10+
baseurl: "" # the subpath of your site, e.g. /blog
11+
url: "http://yourdomain.com" # the base hostname & protocol for your site
12+
social:
13+
twitter: https://twitter.com/<username>
14+
github: https://github.com/<username>
15+
linkedin-square: https://linkedin.com/in/<username>
16+
facebook-official: https://facebook.com/<username>
17+
google-plus-square: https://plus.google.com/u/0/+<username>
18+
#email: /contact/
19+
#flickr:
20+
#instagram:
21+
#youtube-square:
22+
#spotify:
23+
#stack-overflow:
24+
#vimeo:
25+
#reddit:
26+
#stubleupon:
27+
#delicious:
28+
#pied-piper:
29+
#digg:
30+
#soundcloud:
31+
#deviantart:
32+
#angellist:
33+
#tumblr-square:
34+
#stackexchange:
35+
#weibo:
36+
#trello:
37+
#foursquare:
38+
#linux:
39+
#bitbucket-square:
40+
#vk:
41+
#slack:
42+
#vine:
43+
#weixin:
44+
#yelp:
45+
#skyatlas:
46+
#leanpub:
47+
#connectdevelop:
48+
#ils:
49+
#forumbee:
50+
#tripadvisor:
51+
#amazon:
52+
53+
# Build settings
54+
markdown: kramdown
55+
#sass:
56+
# style: compressed

_includes/footer.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!-- Footer -->
2+
<footer id="footer">
3+
<ul class="icons">
4+
{% for socloc in site.social %}
5+
{% if socloc[1] %}
6+
{% if socloc[0] == 'email' %}
7+
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-envelope-o"
8+
><span class="label">E-mail</span></a></li>
9+
{% else %}
10+
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-{{ socloc[0] }}"
11+
><span class="label">{{ socloc[0] }}</span></a></li>
12+
{% endif %}
13+
{% endif %}
14+
{% endfor %}
15+
</ul>
16+
<ul class="copyright">
17+
<li>&copy; {% assign thisyear = site.time | date: "%Y" %}
18+
{% if site.first_published %}
19+
{% capture diff %}{{ site.first_published | minus:thisyear }}{% endcapture %}
20+
{% if diff contains '-' %}{{ site.first_published }},{% endif %}
21+
{% endif %}
22+
{{ thisyear }}
23+
{% if site.owner %}{{ site.owner }}{% else %}{{ site.title }}{% endif %}</li>
24+
<li>Design: <a href="http://html5up.net" target="_blank">HTML5 UP</a></li>
25+
<li>Built with: <a href="http://jekyllrb.com" target="_blank">Jekyll</a></li>
26+
</ul>
27+
</footer>

_includes/head.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<head>
2+
<meta charset="utf-8" />
3+
<meta name="viewport" content="width=device-width, initial-scale=1" />
4+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
5+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
6+
<!--[if lte IE 8]><script src="{{ "/js/ie/html5shiv.js" | prepend: site.baseurl }}"></script><![endif]-->
7+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
8+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}" />
9+
<!--[if lte IE 8]><link rel="stylesheet" href="{{ "/css/ie8.css" | prepend: site.baseurl }}" /><![endif]-->
10+
<!--[if lte IE 9]><link rel="stylesheet" href="{{ "/css/ie9.css" | prepend: site.baseurl }}" /><![endif]-->
11+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
12+
</head>

_includes/header.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!-- Header -->
2+
<header id="header"{% if page.layout == 'landing' %} class="alt"{% endif %}>
3+
<h1><a href="{{ site.baseurl }}/index.html">{{ site.title }}</a></h1>
4+
<nav id="nav">
5+
<ul>
6+
<li class="special">
7+
<a href="#menu" class="menuToggle"><span>Menu</span></a>
8+
<div id="menu">
9+
<ul>
10+
<li><a href="index.html">Home</a></li>
11+
{% for my_page in site.pages %}
12+
{% if my_page.title %}
13+
<li><a href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a></li>
14+
{% endif %}
15+
{% endfor %}
16+
<li><a href="#">Special Attraction</a></li>
17+
<li><a href="#">Accomodation</a></li>
18+
<li><a href="#">Register</a></li>
19+
<li><a href="{{ "/feed.xml" | prepend: site.baseurl }}"
20+
class="icon fa-feed"> RSS Feed</a></li>
21+
</ul>
22+
</div>
23+
</li>
24+
</ul>
25+
</nav>
26+
</header>

_includes/scripts.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- Scripts -->
2+
<script src="{{ "/js/jquery.min.js" | prepend: site.baseurl }}"></script>
3+
<script src="{{ "/js/jquery.scrollex.min.js" | prepend: site.baseurl }}"></script>
4+
<script src="{{ "/js/jquery.scrolly.min.js" | prepend: site.baseurl }}"></script>
5+
<script src="{{ "/js/skel.min.js" | prepend: site.baseurl }}"></script>
6+
<script src="{{ "/js/util.js" | prepend: site.baseurl }}"></script>
7+
<!--[if lte IE 8]><script src="{{ "/js/ie/respond.min.js" | prepend: site.baseurl }}"></script><![endif]-->
8+
<script src="{{ "/js/main.js" | prepend: site.baseurl }}"></script>

_layouts/default.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Original Design: Spectral by HTML5 UP
4+
html5up.net | @n33co
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
Jekyll build mod
7+
-->
8+
<html>
9+
10+
{% include head.html %}
11+
12+
<body>
13+
14+
<!-- Page Wrapper -->
15+
<div id="page-wrapper">
16+
17+
{% include header.html %}
18+
19+
{{ content }}
20+
21+
{% include footer.html %}
22+
23+
{% include scripts.html %}
24+
25+
</div>
26+
27+
</body>
28+
29+
</html>

_layouts/landing.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Original Design: Spectral by HTML5 UP
4+
html5up.net | @n33co
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
Jekyll build mod
7+
-->
8+
<html>
9+
10+
{% include head.html %}
11+
12+
<body class="landing">
13+
14+
<!-- Page Wrapper -->
15+
<div id="page-wrapper">
16+
17+
{% include header.html %}
18+
19+
{{ content }}
20+
21+
{% include footer.html %}
22+
23+
{% include scripts.html %}
24+
25+
</div>
26+
27+
</body>
28+
29+
</html>

_layouts/page.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
---
4+
<article id="main">
5+
6+
<header>
7+
<h2>{{ page.title }}</h2>
8+
<p>Aliquam ut ex ut interdum donec amet imperdiet eleifend</p>
9+
</header>
10+
11+
<section class="wrapper style5">
12+
<div class="inner">
13+
{{ content }}
14+
</div>
15+
</section>
16+
17+
</article>

_sass/libs/_functions.scss

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/// Gets a duration value.
2+
/// @param {string} $keys Key(s).
3+
/// @return {string} Value.
4+
@function _duration($keys...) {
5+
@return val($duration, $keys...);
6+
}
7+
8+
/// Gets a font value.
9+
/// @param {string} $keys Key(s).
10+
/// @return {string} Value.
11+
@function _font($keys...) {
12+
@return val($font, $keys...);
13+
}
14+
15+
/// Gets a misc value.
16+
/// @param {string} $keys Key(s).
17+
/// @return {string} Value.
18+
@function _misc($keys...) {
19+
@return val($misc, $keys...);
20+
}
21+
22+
/// Gets a palette value.
23+
/// @param {string} $keys Key(s).
24+
/// @return {string} Value.
25+
@function _palette($keys...) {
26+
@return val($palette, $keys...);
27+
}
28+
29+
/// Gets a size value.
30+
/// @param {string} $keys Key(s).
31+
/// @return {string} Value.
32+
@function _size($keys...) {
33+
@return val($size, $keys...);
34+
}

_sass/libs/_mixins.scss

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/// Makes an element's :before pseudoelement a FontAwesome icon.
2+
/// @param {string} $content Optional content value to use.
3+
@mixin icon($content: false) {
4+
5+
text-decoration: none;
6+
7+
&:before {
8+
9+
@if $content {
10+
content: $content;
11+
}
12+
13+
-moz-osx-font-smoothing: grayscale;
14+
-webkit-font-smoothing: antialiased;
15+
font-family: FontAwesome;
16+
font-style: normal;
17+
font-weight: normal;
18+
text-transform: none !important;
19+
20+
}
21+
22+
}
23+
24+
/// Applies padding to an element, taking the current element-margin value into account.
25+
/// @param {mixed} $tb Top/bottom padding.
26+
/// @param {mixed} $lr Left/right padding.
27+
/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
28+
/// @param {bool} $important If true, adds !important.
29+
@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
30+
31+
@if $important {
32+
$important: '!important';
33+
}
34+
35+
padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max(0.1em, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
36+
37+
}

0 commit comments

Comments
 (0)