Commit 194302d6 by jijins

New Update

1 parent 6eb41ab1
git clone http://pawan@projects.rapidor.co/pawan/general.git git clone http://pawan@projects.rapidor.co/pawan/general.git
1) Case 1
Run the command like this:- Run the command like this:-
python search.py search_arg python search.py search_arg
...@@ -43,3 +45,19 @@ https://github.com/twitter/distributedlog A high performance ...@@ -43,3 +45,19 @@ https://github.com/twitter/distributedlog A high performance
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
Unique list of programming languages:- Python,Scala,None,Java,C,JavaScript,None,C++,Erlang,None Unique list of programming languages:- Python,Scala,None,Java,C,JavaScript,None,C++,Erlang,None
Average star rating:- 4942 Average star rating:- 4942
Case 2:- Using python django frame work
steps:-
1) create virtual env based on requirement.txt
2) Enter the project folder (/general/search)
python manage.py runserver
http://127.0.0.1:8000/ (Open url in any browser)
example output :-
http://127.0.0.1:8000/?q=apache
\ No newline at end of file
Django==1.8.1
argparse==1.2.1
distribute==0.6.24
dj-database-url==0.3.0
dj-static==0.0.6
gunicorn==19.1.1
static==0.4
static3==0.6.1
whitenoise==2.0.2
wsgiref==0.1.2
\ No newline at end of file
web: gunicorn gettingstarted.wsgi --log-file -
No preview for this file type
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "search.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
dj-database-url==0.3.0
Django==1.7
django-postgrespool==0.3.0
psycopg2==2.6
SQLAlchemy==1.0.4
whitenoise==1.0.6
dj-static==0.0.6
gunicorn==19.1.1
static==0.4
wsgiref==0.1.2
File mode changed
No preview for this file type
"""
Django settings for jijin project.
Generated by 'django-admin startproject' using Django 1.8.3.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
import dj_database_url
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '@kfltyt9d(k(y1+-diig*97-orr3$5ibq&zgo^b-y0%1e*2=6c'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'searchapp',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
)
ROOT_URLCONF = 'search.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [BASE_DIR+"/templates", ],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'search.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Parse database configuration from $DATABASE_URL
#DATABASES['default'] = dj_database_url.config()
# Enable Connection Pooling (if desired)
#DATABASES['default']['ENGINE'] = 'django_postgrespool'
# Honor the 'X-Forwarded-Proto' header for request.is_secure()
#SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
# Allow all host headers
ALLOWED_HOSTS = ['*']
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/
#BASE_DIR = os.path.dirname(os.path.abspath(__file__))
#STATIC_ROOT = 'static'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
BRIGHTCOVE_TOKEN = "56h_fV8ELpMGDVjb-n3oymJ2yyhmsxXQhOYvgYbVu00z1ZP0DUn45w.."
BRIGHTCOVE_PLAYER = {
'default': {
'PLAYERID': 'a_default_player_id',
'PLAYERKEY': 'a_default_player_key',
},
'single': {
'PLAYERID': 'another_player_id',
'PLAYERKEY': 'another_player_key',
},
}
# Simplified static file serving.
# https://warehouse.python.org/project/whitenoise/
#STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
No preview for this file type
"""
Django settings for jijin project.
Generated by 'django-admin startproject' using Django 1.8.3.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
import dj_database_url
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '@kfltyt9d(k(y1+-diig*97-orr3$5ibq&zgo^b-y0%1e*2=6c'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django_brightcove',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
)
ROOT_URLCONF = 'jijin.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [BASE_DIR+"/templates", ],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'jijin.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Parse database configuration from $DATABASE_URL
#DATABASES['default'] = dj_database_url.config()
# Enable Connection Pooling (if desired)
#DATABASES['default']['ENGINE'] = 'django_postgrespool'
# Honor the 'X-Forwarded-Proto' header for request.is_secure()
#SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
# Allow all host headers
ALLOWED_HOSTS = ['*']
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/
#BASE_DIR = os.path.dirname(os.path.abspath(__file__))
STATIC_ROOT = 'static'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
BRIGHTCOVE_TOKEN = "56h_fV8ELpMGDVjb-n3oymJ2yyhmsxXQhOYvgYbVu00z1ZP0DUn45w.."
BRIGHTCOVE_PLAYER = {
'default': {
'PLAYERID': 'a_default_player_id',
'PLAYERKEY': 'a_default_player_key',
},
'single': {
'PLAYERID': 'another_player_id',
'PLAYERKEY': 'another_player_key',
},
}
# Simplified static file serving.
# https://warehouse.python.org/project/whitenoise/
#STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
"""jijin URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.8/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Add an import: from blog import urls as blog_urls
2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
"""
from django.conf.urls import include, url
from django.contrib import admin
from django.views.generic import TemplateView
from django.conf import settings
from django.conf.urls.static import static
from .views import SearchView
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^$', SearchView.as_view()),
]+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
No preview for this file type
"""jijin URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.8/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Add an import: from blog import urls as blog_urls
2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
"""
from django.conf.urls import include, url
from django.contrib import admin
from django.views.generic import TemplateView
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^$', TemplateView.as_view(template_name="home.html")),
url(r'^django_brightcove', include('django_brightcove.urls')),
]+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
import urllib2
import json
from django.shortcuts import render
from django.views.generic import View
class SearchView(View):
initial = {}
template_name = 'home.html'
def get(self, request, *args, **kwargs):
items = []
languages = []
count = 0
stargazers_count = 0
average = None
if request.GET.get('q'):
search_q = request.GET['q']
url = 'https://api.github.com/search/repositories?q=%s&sort=stars&order=desc' % search_q
response = urllib2.urlopen(url)
result = json.loads(response.read())
items = result['items']
for item in items[:50]:
count += 1
stargazers_count += item['stargazers_count']
if str(item['language']) not in languages:
languages.append(str(item['language']))
average = stargazers_count/count
return render(request, self.template_name, {'items': items, 'languages':languages, 'average':average})
\ No newline at end of file
No preview for this file type
"""
WSGI config for jijin project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "search.settings")
application = get_wsgi_application()
No preview for this file type
"""
WSGI config for jijin project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "jijin.settings")
application = get_wsgi_application()
No preview for this file type
from django.contrib import admin
# Register your models here.
No preview for this file type
No preview for this file type
from django.db import models
# Create your models here.
No preview for this file type
from django.test import TestCase
# Create your tests here.
import urllib2
import json
from django.shortcuts import render
from django.views.generic import View
class SearchView(View):
initial = {}
template_name = 'home.html'
def get(self, request, *args, **kwargs):
items = []
languages = []
count = 0
stargazers_count = 0
if request.GET.get('q'):
search_q = request.GET['q']
url = 'https://api.github.com/search/repositories?q=%s&sort=stars&order=desc' % search_q
response = urllib2.urlopen(url)
result = json.loads(response.read())
items = result['items']
for item in items[:50]:
count += 1
stargazers_count += item['stargazers_count']
if str(item['language']) not in languages:
languages.append(str(item['language']))
average = stargazers_count/count
return render(request, self.template_name, {'items': items, 'languages':languages, 'average':average})
\ No newline at end of file
<html>
<body>
<table>
<tr><td><b>search query</b>&nbsp;<input type="text" id='search_value'>&nbsp;<input type='submit' id="submit_search"></td></tr>
<tr>
<td>
<table border='1'>
<tr><td>URL</td><td>Description</td></tr>
{% for item in items %}
<tr><td><ahref='{{item.html_url}}'>{{item.html_url}}</a></td><td>{{item.description}}</td></tr>
{% endfor %}
</table>
</td>
</tr>
<tr><td><b>Unique list of programming languages:-</b>&nbsp;{% for language in languages %}{{language}},{% endfor %}</td></tr>
<tr><td><b>Average star rating</b></b>:-</b></b>&nbsp;{{average}}</td></tr>
</table>
</body>
</html>
<script type="text/javascript">
document.getElementById("submit_search").onclick = function () {
search_value = document.getElementById("search_value").value
location.href = "?q="+search_value;
};
</script>
\ No newline at end of file
{% load staticfiles %}
<!DOCTYPE html>
<head>
<title>Jijin Sebastian</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Timeline Style CV / Resume / vCard Bootstrap Template.">
<meta name="author" content="The Develovers">
<!-- CSS -->
<link href="{% static 'css/bootstrap.css' %}" media="screen, projection" rel="stylesheet" type="text/css">
<link href="{% static 'css/font-awesome.min.css' %}" media="screen, projection" rel="stylesheet" type="text/css">
<link href="{% static 'css/main.min.css' %}" media="screen, projection" rel="stylesheet" type="text/css">
<link href="{% static 'demo-panel/demo-panel-style.css' %}" rel="stylesheet" type="text/css">
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'ico/apple-touch-icon-144-precomposed.png' %}">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'ico/apple-touch-icon-114-precomposed.png' %}">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'ico/apple-touch-icon-72-precomposed.png' %}">
<link rel="apple-touch-icon-precomposed" href="{% static 'ico/apple-touch-icon-57-precomposed.png' %}">
<link rel="shortcut icon" href="{% static 'ico/favicon.png' %}">
</head>
<body id="top" data-spy="scroll" data-target="#main-nav">
<!-- WRAPPER -->
<div class="wrapper">
<!-- MAIN NAVIGATION -->
<nav class="navbar navbar-default" id="main-nav" role="navigation">
<div class="container">
<!-- brand and toggle -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".main-nav-collapse">
<span class="sr-only">Toggle Navigation</span>
<i class="fa fa-bars"></i>
</button>
</div>
<!-- navigation links -->
<div class="collapse navbar-collapse main-nav-collapse">
<ul class="nav navbar-nav">
<li><a href="#top">HOME</a></li>
<li><a href="#about-me">ABOUT ME</a></li>
<li><a href="#resume">RESUME</a></li>
<li><a href="#projects">PROJECTS</a></li>
<li><a href="#contacts">CONTACTS</a></li>
</ul>
</div>
</div>
</nav>
<!-- END MAIN NAVIGATION -->
<!-- HEADER -->
<header class="hero-unit header" id="header">
<div class="container">
<div class="row">
<div class="col-md-6 left">
<div class="avatar">
<img src="{% static 'img/profile-picture.png' %}" class="img-responsive" alt="Profile Picture" />
</div>
</div>
<div class="col-md-6 right">
<h1 class="hide">JIJIN SEBASTIAN</h1>
<h2 class="heading">HELLO, I'M JIJIN</h2>
<p>Python Developer. Want to know more about me?</p>
<a href="#about-me" class="btn btn-default btn-lg">READ MORE</a>
<!-- <a href="#" class="btn btn-primary btn-lg">DOWNLOAD vCARD</a>-->
</div>
</div>
</div>
</header>
<!-- END HEADER -->
<!-- ABOUT ME -->
<section class="section about-me" id="about-me">
<div class="container">
<h2 class="heading">ABOUT ME</h2>
<p>An enthusiastic engineer with over three years of experience in IT sector.</p>
<p>Web application development involving requirement analysis,
design,debugging, testing and documentation.</p>
<!--<div class="row interest">
<div class="col-md-3">
<h3 class="sub-heading"><span class="glyphicon glyphicon-headphones"></span> Music</h3>
<p>Efficiently revolutionize one-to-one potentialities before B2B models. Continually leverage other's resource-leveling niche markets whereas focused processes. Distinctively transition high standards in total linkage.</p>
</div>
<div class="col-md-3">
<h3 class="sub-heading"><span class="glyphicon glyphicon-film"></span> Movies</h3>
<p>Holisticly pursue pandemic services before distributed experiences. Collaboratively envisioneer just in time niches before ubiquitous e-services. Appropriately enable scalable e-business with leveraged opportunities.</p>
</div>
<div class="col-md-3">
<h3 class="sub-heading"><span class="glyphicon glyphicon-briefcase"></span> Traveling</h3>
<p>Authoritatively transition global web services vis-a-vis user-centric content. Rapidiously innovate principle-centered resources via intuitive models. Monotonectally integrate collaborative core competencies before best-of-breed potentialities.</p>
</div>
<div class="col-md-3">
<h3 class="sub-heading"><span class="glyphicon glyphicon-book"></span> Books</h3>
<p>Holisticly restore resource-leveling methodologies rather than distinctive e-services. Seamlessly whiteboard unique quality vectors via functionalized catalysts for change. Enthusiastically embrace proactive outsourcing through.</p>
</div>
</div>-->
<div class="social">
<h3 class="sub-heading">Follow me on:</h3>
<ul class="social-icons">
<li><a href="https://www.facebook.com/jijin.sebastian.1"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/JijinSebastian"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://plus.google.com/+jijinsebastian974/"><i class="fa fa-google-plus"></i></a></li>
<li><a href="https://in.linkedin.com/in/jijinsebastian"><i class="fa fa-linkedin"></i></a></li>
<!--<li><a href="#"><i class="fa fa-dribbble"></i></a></li>-->
</ul>
</div>
</div>
</section>
<!-- END ABOUT ME -->
<!-- SKILLS -->
<section class="section skills" id="skills">
<div class="container">
<h2 class="heading sr-only">SKILLS</h2>
<div class="row">
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart1" data-percent="78">
<span class="percent">78%</span>
</div>
<span class="chart-title">PYTHON</span>
</div>
</div>
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart2" data-percent="80">
<span class="percent">80%</span>
</div>
<span class="chart-title">Django</span>
</div>
</div>
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart3" data-percent="90">
<span class="percent">90%</span>
</div>
<span class="chart-title">HTML</span>
</div>
</div>
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart1" data-percent="80">
<span class="percent">80%</span>
</div>
<span class="chart-title">JAVASCRPT</span>
</div>
</div>
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart1" data-percent="70">
<span class="percent">70%</span>
</div>
<span class="chart-title">JQUERY</span>
</div>
</div>
<div class="col-md-4">
<div class="skill-chart">
<div class="pie-chart" id="chart1" data-percent="92">
<span class="percent">70%</span>
</div>
<span class="chart-title">CSS</span>
</div>
</div>
</div>
</div>
</section>
<!-- END SKILLS -->
<!-- RESUME -->
<section class="section resume" id="resume">
<div class="container">
<h2 class="heading">RESUME</h2>
<ul class="timeline">
<li class="year">2015</li>
<li class="event">
<h3 class="heading">Software Engineer, Cyspan Systems </h3>
<span class="month"><i class="fa fa-calendar"></i>Present</span>
<p>Cochin</p>
</li>
<li class="year">2014</li>
<li class="event">
<h3 class="heading">Software Engineer, Techversant Infotech </h3>
<span class="month"><i class="fa fa-calendar"></i>March 2014 - March 2015</span>
<p>Trivandrum</p>
</li>
<li class="year">2012</li>
<li class="event">
<h3 class="heading">Software Engineer, Sayone Technologies</h3>
<span class="month"><i class="fa fa-calendar"></i>Mar,2012 - Mar, 2014</span>
<p>Cochin</p>
</li>
<li class="year">2011</li>
<li class="event">
<h3 class="heading">Trainee, Envision infomedia Calicut</h3>
<span class="month"><i class="fa fa-calendar"></i>Nov, 2011</span>
<p>Calicut</p>
<figure>
<!--<img src="assets/img/skills.png" alt="Skills" />-->
</figure>
</li>
<li class="event">
<h3 class="heading">Bachelor of Computer Application</h3>
<span class="month"><i class="fa fa-calendar"></i>2008-2011</span>
<p><b>Mangalore University</b></p>
<p>Srinivas Institute of Management Studies Mangalore</p>
</li>
<li class="year">2008</li>
<li class="event">
<h3 class="heading">St.Vincent EMHSS Pala</h3>
<!--<span class="month"><i class="fa fa-calendar"></i></span>-->
<p> Kerala State Higher Secondary Board</p>
</li>
<li class="year">2006</li>
<li class="event">
<h3 class="heading">Dr. AGHSS Kodoth</h3>
<!--<span class="month"><i class="fa fa-calendar"></i></span>-->
<p> Board of Public Examination, Kerala</p>
</li>
</ul>
</div>
</section>
<!-- END RESUME -->
<!-- PROJECTS
<section class="section projects" id="projects">
<div class="container">
<h2 class="heading">PROJECTS</h2>
<p class="copy-text">Intrinsicly mesh corporate partnerships with synergistic leadership skills. Uniquely negotiate high-payoff potentialities before premium niches. Progressively cultivate functional platforms after focused processes. Assertively supply emerging metrics before out-of-the-box internal or "organic".</p>
<div class="row project-list">
<ul class="project-grid project-effect-shrink">
<li class="col-md-6">
<figure>
<img src="{% static 'img/projects/project-item1.png' %}" alt="Project 1"/>
<figcaption>
<div class="project-item-info">
<h3 class="sub-heading">Big Thing Landing Page</h3>
<p>Progressively pursue visionary functionalities through vertical ROI. Uniquely unleash alternative experiences vis-a-vis.</p>
<a href="#" class="btn btn-default">View Details</a>
</div>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure>
<img src="{% static 'img/projects/project-item2.png' %}" alt="Project 2"/>
<figcaption>
<div class="project-item-info">
<h3 class="sub-heading">Tiick Tock Coming Soon Page</h3>
<p>Appropriately engage functional potentialities for principle-centered customer service.</p>
<a href="#" class="btn btn-default">View Details</a>
</div>
</figcaption>
</figure>
</li>
</ul>
</div>
</div>
</section>
END PROJECTS -->
<!-- CONTACTS -->
<section class="section contacts" id="contacts">
<div class="container">
<h2 class="heading">CONTACTS</h2>
<p>Continually promote world-class methodologies through equity invested results. Monotonectally target stand-alone ideas via cross-media collaboration and idea-sharing. Seamlessly grow innovative markets.</p>
<div class="row google-map">
<div class="map-canvas"></div>
</div>
<div class="row contact-address">
<div class="col-md-6">
<div class="contact-form-wrapper margin-bottom">
<form id="contact-form" class="form-horizontal contact-form" method="post" role="form" novalidate>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="contact-name" class="control-label sr-only">Name</label>
<input type="text" class="form-control" id="contact-name" name="name" placeholder="Name*" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="contact-email" class="control-label sr-only">Email</label>
<input type="email" class="form-control" id="contact-email" name="email" placeholder="Email*" data-parsley-trigger="focusin focusout" required>
</div>
</div>
</div>
<div class="form-group">
<label for="contact-subject" class="control-label sr-only">Subject</label>
<div class="col-sm-12">
<input type="text" class="form-control" id="contact-subject" name="subject" placeholder="Subject">
</div>
</div>
<div class="form-group">
<label for="contact-message" class="control-label sr-only">Message</label>
<div class="col-sm-12">
<textarea class="form-control" id="contact-message" name="message" rows="5" cols="30" placeholder="Message*" required></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<button id="submit-button" type="submit" class="btn btn-primary"><i class="fa loading-icon"></i> <span>Submit Message</span></button>
</div>
</div>
<input type="hidden" name="msg-submitted" id="msg-submitted" value="true">
</form>
</div>
</div>
<div class="col-md-6">
<p>Credibly matrix cross-unit best practices with enterprise-wide niches. Intrinsicly transform worldwide quality vectors vis-a-vis resource-leveling web services. Synergistically impact just in time alignments whereas prospective alignments.</p>
<div class="address-lines">
<!--<p>12345 North Main Street</p>
<p>New York, 2233445</p>-->
<p>Mobile: (91) 9747575914</p>
<p>Email: <a href="mailto:jijin.sbstn@gmail.com">jijin.sbstn@gmail.com</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- END CONTACTS -->
<!-- FOOTER -->
<footer class="footer">
<p>Copyright 2015 The Develovers. All Rights Reserved.</p>
</footer>
<!-- END FOOTER -->
</div>
<!-- END WRAPPER -->
<!-- JAVASCRIPT -->
<script src="{% static 'js/jquery-2.1.1.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="{% static 'js/plugins/map/jquery.ui.map.full.min.js' %}?ver=3.0"></script>
<script src="{% static 'js/plugins/scrolling/jquery.scrollTo-1.4.3.1-min.js' %}"></script>
<script src="{% static 'js/plugins/scrolling/jquery.localscroll-1.2.7-min.js' %}"></script>
<script src="{% static 'js/plugins/parsley/parsley.min.js' %}"></script>
<script src="{% static 'js/plugins/autohidingnavbar/jquery.bootstrap-autohidingnavbar.min.js' %}"></script>
<script src="{% static 'js/plugins/jquery-easypiechart/jquery.easypiechart.min.js' %}"></script>
<script src="{% static 'js/main.min.js' %}"></script>
<!-- DEMO PANEL -->
<script type="text/javascript">
var toggleDemoPanel = function(e) {
e.preventDefault();
var panel = document.getElementById( 'demo-panel' );
if ( panel.className ) panel.className = '';
else panel.className = 'active';
}
// fix each iframe src when back button is clicked
$(function() {
$('iframe').each(function() {
this.src = this.src;
});
});
</script>
<!-- END DEMO PANEL -->
</body>
</html>
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!