updates
This commit is contained in:
+93
@@ -0,0 +1,93 @@
|
||||
-
|
||||
var
|
||||
htmlClass = "wide wow-animation",
|
||||
fonts = "//fonts.googleapis.com/css?family=Work+Sans:300,400,500,700,800%7CPoppins:300,400,700",
|
||||
navbarCounter = 0,
|
||||
logo = {
|
||||
name: 'CaseCraft',
|
||||
default: { trueSize: 'logo-default-151x44', retina: 'logo-default-151x44' },
|
||||
inverse: { trueSize: 'logo-inverse-151x44', retina: 'logo-inverse-151x44' },
|
||||
light: { trueSize: 'logo-light-115x34', retina: 'logo-light-115x34' }
|
||||
},
|
||||
links = {
|
||||
post: 'single-blog-post.html',
|
||||
getTemplate: 'https://themeforest.net/item/casecraft-elegant-business-and-financial-company-multipage-html-template/21536362'
|
||||
},
|
||||
colors = {
|
||||
primary: '#4854ed'
|
||||
},
|
||||
menu = [
|
||||
{
|
||||
title: 'Home',
|
||||
category: 'home',
|
||||
link: 'index.html'
|
||||
},
|
||||
{
|
||||
title: 'About us',
|
||||
category: 'about us',
|
||||
link: 'about-us.html',
|
||||
dropdown: [
|
||||
{ title: 'Our Team' },
|
||||
{ title: 'Testimonials' }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Properties',
|
||||
category: 'properties',
|
||||
link: 'properties.html',
|
||||
dropdown: [
|
||||
{ title: 'Single Property' }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Blog',
|
||||
category: 'blog',
|
||||
link: '#',
|
||||
dropdown: [
|
||||
{ title: 'Grid Blog' },
|
||||
{ title: 'Sidebar Blog' },
|
||||
{ title: 'Single Blog Post'},
|
||||
{ title: 'Blog Layouts' }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Pages',
|
||||
category: 'pages',
|
||||
link: '#',
|
||||
megamenu: [
|
||||
{
|
||||
list: [
|
||||
{ title: 'Typography' },
|
||||
{ title: 'Buttons' },
|
||||
{ title: 'Forms' },
|
||||
{ title: 'Progress bars' },
|
||||
{ title: 'Tabs' },
|
||||
{ title: 'Tables' },
|
||||
{ title: 'Accordions' }
|
||||
]
|
||||
},
|
||||
{
|
||||
list: [
|
||||
{ title: 'Small Features' },
|
||||
{ title: 'Large Features' },
|
||||
{ title: 'Careers' },
|
||||
{ title: 'Search results' },
|
||||
{ title: 'Single Job' }
|
||||
]
|
||||
},
|
||||
{
|
||||
list: [
|
||||
{ title: '404 Page' },
|
||||
{ title: '503 Page' },
|
||||
{ title: 'Coming Soon' },
|
||||
{ title: 'Privacy policy' },
|
||||
{ title: 'Under Construction' }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Contacts',
|
||||
category: 'contacts'
|
||||
}
|
||||
];
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
-
|
||||
function getImageSize(name) {
|
||||
try { return name.match('[0-9]+(x)[0-9]+')[0].split('x'); }
|
||||
catch ( error ) {
|
||||
throw new Error('Error in function getImageSize:\n' + error);
|
||||
}
|
||||
}
|
||||
|
||||
//- Get menu branch by category name
|
||||
function getMenuCategory(category) {
|
||||
for (var i = 0; i < menu.length; i++) {
|
||||
if (menu[i].category === category) {
|
||||
return menu[i];
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
//- Any page title to *.html link
|
||||
function nameToLink(name) {
|
||||
try { return name.trim().replace(/\s/g, '-').replace(/[\(\)]/g, '').toLowerCase() + '.html'; }
|
||||
catch ( error ) {
|
||||
throw new Error('Error in function nameToLink:\n' + error);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//- Img image
|
||||
mixin img(name, className)
|
||||
- var size = getImageSize(name);
|
||||
- var ext = name.split('.')[1];
|
||||
|
||||
img(src='images/' + name, alt='', width=size[0], height=size[1], class=className)&attributes(attributes)
|
||||
|
||||
|
||||
//- Jpg image
|
||||
mixin jpg(name, className)
|
||||
- var size = getImageSize(name);
|
||||
img(src='images/' + name + '.jpg', alt='', width=size[0], height=size[1], class=className)&attributes(attributes)
|
||||
|
||||
|
||||
//- Png image
|
||||
mixin png(name, className)
|
||||
- var size = getImageSize(name);
|
||||
img(src='images/' + name + '.png', alt='', width=size[0], height=size[1], class=className)&attributes(attributes)
|
||||
|
||||
|
||||
//- Loop without indexing mixin
|
||||
mixin loop(count)
|
||||
- for (var i = 0; i < count; i++)
|
||||
block
|
||||
|
||||
|
||||
//- Parallax Section
|
||||
mixin parallax(obj)
|
||||
section.section.parallax-container(data-parallax-img='images/' + obj.img + '.jpg')&attributes(attributes)
|
||||
.parallax-content(class= obj.innerClass)
|
||||
block
|
||||
|
||||
//- Parallax Block
|
||||
mixin parallax-block(obj)
|
||||
.parallax-container(data-parallax-img='images/' + obj.img + '.jpg')&attributes(attributes)
|
||||
.parallax-content(class= obj.innerClass)
|
||||
block
|
||||
|
||||
|
||||
//- Breadcrumbs
|
||||
mixin breadcrumbs(obj)
|
||||
- var activeItemName= obj.path.pop();
|
||||
- var category = getMenuCategory(obj.category);
|
||||
|
||||
// Breadcrumbs
|
||||
section.breadcrumbs-custom.bg-image.context-dark(style='background-image: url(images/' + (obj.bgImage ? obj.bgImage : 'breadcrumbs-image-1') + '.jpg);'): .breadcrumbs-custom-inner
|
||||
.container.breadcrumbs-custom-container
|
||||
.breadcrumbs-custom-main
|
||||
h6.breadcrumbs-custom-subtitle.title-decorated=category.title
|
||||
h2.text-uppercase.breadcrumbs-custom-title=activeItemName
|
||||
ul.breadcrumbs-custom-path
|
||||
li: a(href='index.html') Home
|
||||
- if (typeof(category) !== 'undefined' && (category.title.toLowerCase() !== activeItemName.toLowerCase()))
|
||||
li: a(href=category.link ? category.link : nameToLink(category.title))=category.title
|
||||
-for( var i = 0; i < obj.path.length; i++)
|
||||
li: a(href=obj.path[i].link ? obj.path[i].link : nameToLink(obj.path[i].title))=obj.path[i].title
|
||||
|
||||
li.active=activeItemName
|
||||
|
||||
|
||||
|
||||
//- Copyright
|
||||
mixin rights(modClass)
|
||||
// Rights
|
||||
p.rights(class=modClass)
|
||||
span ©
|
||||
span.copyright-year
|
||||
span
|
||||
span All Rights Reserved.
|
||||
span
|
||||
br.d-sm-none
|
||||
a(href='#') Terms of Use
|
||||
span and
|
||||
span
|
||||
a(href='privacy-policy.html') Privacy Policy
|
||||
|
||||
mixin quote-mark
|
||||
svg(x='0px', y='0px', width='35px', height='25px', viewbox='0 0 35 25')&attributes(attributes)
|
||||
path(d='M27.461,10.206h7.5v15h-15v-15L25,0.127h7.5L27.461,10.206z M7.539,10.206h7.5v15h-15v-15L4.961,0.127h7.5 L7.539,10.206z')
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
include _elements
|
||||
include _config
|
||||
|
||||
|
||||
block variables
|
||||
|
||||
doctype html
|
||||
|
||||
|
||||
html(lang='en' class=htmlClass)
|
||||
head
|
||||
block title
|
||||
title= pageName
|
||||
|
||||
meta(name='format-detection' content='telephone=no')
|
||||
meta(name='viewport' content='width=device-width height=device-height initial-scale=1.0 maximum-scale=1.0 user-scalable=0')
|
||||
meta(http-equiv='X-UA-Compatible' content='IE=edge')
|
||||
meta(charset='utf-8')
|
||||
|
||||
link(rel='icon' href='images/favicon.ico' type='image/x-icon')
|
||||
|
||||
// Stylesheets
|
||||
link(rel='stylesheet' type='text/css' href=fonts)
|
||||
link(rel='stylesheet' href='css/bootstrap.css')
|
||||
link(rel='stylesheet' href='css/fonts.css')
|
||||
link(rel='stylesheet' href='css/style.css' id='main-styles-link')
|
||||
|
||||
!= '\n <!--[if lt IE 10]>'
|
||||
div(style='background: #212121; padding: 10px 0; box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3); clear: both; text-align:center; position: relative; z-index:1;')
|
||||
a(href='http://windows.microsoft.com/en-US/internet-explorer/')
|
||||
img(src='images/ie8-panel/warning_bar_0000_us.jpg' border=0 height=42 width=820 alt='You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today.')
|
||||
script(src='js/html5shiv.min.js')
|
||||
!= '\n <![endif]-->'
|
||||
|
||||
body
|
||||
.page
|
||||
block page
|
||||
|
||||
.preloader
|
||||
.preloader-logo
|
||||
+png(logo.default.trueSize)(srcset='images/' + logo.default.retina + '.png 2x')
|
||||
.preloader-body
|
||||
#loadingProgressG
|
||||
#loadingProgressG_1.loadingProgressG
|
||||
|
||||
// Global Mailform Output
|
||||
#form-output-global.snackbars
|
||||
|
||||
// Javascript
|
||||
script(src='js/core.min.js')
|
||||
script(src='js/script.js')
|
||||
|
||||
if(pageName === 'Privacy Policy')
|
||||
// coded by Drel
|
||||
@@ -0,0 +1,16 @@
|
||||
mixin card(obj)
|
||||
- var headingId = id=obj.parentId + '-heading-' + obj.number
|
||||
- var bodyId = id=obj.parentId + '-collapse-' + obj.number
|
||||
|
||||
// Bootstrap card
|
||||
article.card.card-custom(class=obj.cardClass)&attributes(attributes)
|
||||
.card-header(id=headingId role='tab')
|
||||
.card-title
|
||||
a(role='button' data-toggle='collapse' data-parent=('#' + obj.parentId) href='#' + bodyId aria-controls=bodyId aria-expanded=obj.show ? 'true' : 'false' class={'collapsed' : !obj.show})
|
||||
=obj.header
|
||||
if(obj.arrow !== false)
|
||||
.card-arrow
|
||||
|
||||
.collapse(id=bodyId class={'show': obj.show} role='tabpanel' aria-labelledby=headingId)
|
||||
.card-body
|
||||
block
|
||||
@@ -0,0 +1,12 @@
|
||||
mixin career-classic(obj)
|
||||
// Career Classic
|
||||
article.career-classic&attributes(attributes)
|
||||
h4.career-classic-title: a.post-modern-title(href=obj.link ? obj.link: 'single-job.html')=obj.title
|
||||
.career-classic-divider
|
||||
if(obj.list)
|
||||
ul.career-classic-list
|
||||
each item in obj.list
|
||||
li
|
||||
span.icon(class=item.iconClass)
|
||||
span=item.text
|
||||
block
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
mixin progress-bar-linear(progress)
|
||||
// Linear progress bar
|
||||
article.progress-linear&attributes(attributes)
|
||||
.progress-header
|
||||
p= progress.title
|
||||
span.progress-value= progress.valueTo
|
||||
.progress-bar-linear-wrap
|
||||
.progress-bar-linear
|
||||
@@ -0,0 +1,8 @@
|
||||
mixin thumbnail-classic(obj)
|
||||
// Thumbnail Classic
|
||||
a.thumbnail-classic(href=obj.link)&attributes(attributes)
|
||||
+jpg(obj.img, 'thumbnail-classic-image')
|
||||
.thumbnail-classic-caption
|
||||
p.thumbnail-classic-title=obj.title
|
||||
p.thumbnail-classic-text=obj.text
|
||||
.thumbnail-classic-dummy
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
mixin thumbnail-corporate(obj)
|
||||
// Thumbnail Corporate
|
||||
if(obj.link)
|
||||
article.thumbnail-corporate&attributes(attributes)
|
||||
+jpg(obj.img, 'thumbnail-corporate-image')
|
||||
.thumbnail-corporate-caption
|
||||
p.thumbnail-corporate-title=obj.title
|
||||
if(obj.text)
|
||||
p=obj.text
|
||||
a.thumbnail-corporate-link(href=obj.link)
|
||||
span.icon.mdi.mdi-plus
|
||||
span.icon.mdi.mdi-plus
|
||||
.thumbnail-corporate-dummy
|
||||
|
||||
if(obj.original)
|
||||
a.thumbnail-corporate(href=obj.original)&attributes(attributes)
|
||||
+jpg(obj.img, 'thumbnail-corporate-image')
|
||||
.thumbnail-corporate-caption
|
||||
p.thumbnail-corporate-title=obj.title
|
||||
if(obj.text)
|
||||
p=obj.text
|
||||
|
||||
.thumbnail-corporate-dummy
|
||||
@@ -0,0 +1,5 @@
|
||||
mixin thumbnail-creative(obj)
|
||||
// Thumbnail Creative
|
||||
a.thumbnail-creative(href=obj.link)&attributes(attributes)
|
||||
+jpg(obj.img, 'thumbnail-creative-image')
|
||||
h5.thumbnail-creative-title=obj.title
|
||||
@@ -0,0 +1,4 @@
|
||||
mixin thumbnail-indigo(obj)
|
||||
a.thumbnail-indigo(href=obj.link style='background-image: url(' + obj.img + '.jpg);')&attributes(attributes)
|
||||
.thumbnail-indigo-caption
|
||||
h4.thumbnail-indigo-title=obj.title
|
||||
@@ -0,0 +1,6 @@
|
||||
.group.group-xs.group-middle
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-facebook(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-twitter(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-instagram(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-google(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-linkedin(href='#')
|
||||
@@ -0,0 +1,36 @@
|
||||
// RD Navbar Nav
|
||||
ul.rd-navbar-nav
|
||||
each item in menu
|
||||
li.rd-nav-item(class={active: activeCategory === item.category})
|
||||
a.rd-nav-link(href=item.link ? item.link : nameToLink(item.title))=item.title
|
||||
//- Megamenu handler
|
||||
if(typeof(item.megamenu) !== 'undefined')
|
||||
// RD Navbar Megamenu
|
||||
ul.rd-menu.rd-navbar-megamenu
|
||||
each column in item.megamenu
|
||||
li.rd-megamenu-item
|
||||
if (typeof(column.list) !== 'undefined')
|
||||
if(typeof(column.title) != 'undefined')
|
||||
h6.rd-megamenu-title=column.title
|
||||
ul.rd-megamenu-list
|
||||
each listItem in column.list
|
||||
li.rd-megamenu-list-item: a.rd-megamenu-list-link(href=listItem.link ? listItem.link : nameToLink(listItem.title))=listItem.title
|
||||
|
||||
if (typeof(column.banner) !== 'undefined')
|
||||
.banner(style='background-image: url(images/' + column.banner.image + '.jpg);')
|
||||
!=column.banner.button
|
||||
|
||||
|
||||
//- Dropdown menu handler
|
||||
if(typeof(item.dropdown) !== 'undefined')
|
||||
// RD Navbar Dropdown
|
||||
ul.rd-menu.rd-navbar-dropdown
|
||||
each subItem1 in item.dropdown
|
||||
li.rd-dropdown-item: a.rd-dropdown-link(href=subItem1.link ? subItem1.link : nameToLink(subItem1.title))=subItem1.title
|
||||
|
||||
//- Submenu 2 lvl handler
|
||||
if(typeof(subItem1.dropdown) !== 'undefined')
|
||||
// RD Navbar Dropdown
|
||||
ul.rd-menu.rd-navbar-dropdown
|
||||
each subItem2 in subItem1.dropdown
|
||||
li.rd-dropdown-item: a.rd-dropdown-link(href=subItem2.link ? subItem2.link : nameToLink(subItem2.title))=subItem2.title
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
.owl-carousel(
|
||||
data-items='1'
|
||||
data-md-items='2'
|
||||
data-dots='true'
|
||||
data-nav='false'
|
||||
data-loop='false'
|
||||
data-margin='30'
|
||||
data-stage-padding='0'
|
||||
data-mouse-drag="false")
|
||||
.wow-outer: blockquote.quote-modern.quote-modern-big.wow.slideInLeft
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-3-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Albert Webb
|
||||
p.quote-modern-caption Regular Client
|
||||
|
||||
.wow-outer: blockquote.quote-modern.quote-modern-big.wow.slideInLeft
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-1-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Kelly McMillan
|
||||
p.quote-modern-caption Regular Client
|
||||
|
||||
.wow-outer: blockquote.quote-modern.quote-modern-big.wow.slideInLeft
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-2-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Harold Barnett
|
||||
p.quote-modern-caption Regular Client
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
include ../components/_ui-card
|
||||
|
||||
.row.row-50.justify-content-lg-between.flex-lg-row-reverse.offset-top-1
|
||||
.col-lg-7.col-xl-6
|
||||
h3.wow-outer: span.wow.slideInDown Frequently Asked Questions
|
||||
// Bootstrap collapse
|
||||
#accordion2.card-group-custom.card-group-corporate.wow-outer(role='tablist' aria-multiselectable='false')
|
||||
+card({
|
||||
show: true,
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion2',
|
||||
number: '1',
|
||||
header: 'What are the advantages of purchasing a website template?'
|
||||
}).wow.fadeInDown(data-wow-delay='.05s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion2',
|
||||
number: '2',
|
||||
header: 'Do you provide any scripts with your templates or could you do some custom programming?'
|
||||
}).wow.fadeInDown(data-wow-delay='.1s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion2',
|
||||
number: '3',
|
||||
header: 'What do I receive when I order a template from Zemez?'
|
||||
}).wow.fadeInDown(data-wow-delay='.15s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion2',
|
||||
number: '4',
|
||||
header: 'In what formats are your templates available?'
|
||||
}).wow.fadeInDown(data-wow-delay='.2s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
|
||||
|
||||
.col-lg-5.wow-outer
|
||||
+jpg('accordions-1-470x368').wow.slideInLeft
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
include ../components/_ui-card
|
||||
include ../components/_ui-progress-bar-linear
|
||||
|
||||
.row.row-50.justify-content-lg-between.offset-top-1
|
||||
.col-lg-7.col-xl-6
|
||||
h3.wow-outer: span.wow.slideInDown Frequently Asked Questions
|
||||
// Bootstrap collapse
|
||||
#accordion1.card-group-custom.card-group-corporate.wow-outer(role='tablist' aria-multiselectable='false')
|
||||
+card({
|
||||
show: true,
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion1',
|
||||
number: '1',
|
||||
header: 'What are the advantages of purchasing a website template?'
|
||||
}).wow.fadeInDown(data-wow-delay='.05s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion1',
|
||||
number: '2',
|
||||
header: 'Do you provide any scripts with your templates or could you do some custom programming?'
|
||||
}).wow.fadeInDown(data-wow-delay='.1s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion1',
|
||||
number: '3',
|
||||
header: 'What do I receive when I order a template from Zemez?'
|
||||
}).wow.fadeInDown(data-wow-delay='.15s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
||||
|
||||
+card({
|
||||
cardClass: 'card-corporate',
|
||||
parentId: 'accordion1',
|
||||
number: '4',
|
||||
header: 'In what formats are your templates available?'
|
||||
}).wow.fadeInDown(data-wow-delay='.2s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
||||
|
||||
.col-lg-5
|
||||
h3.wow-outer: span.wow.slideInDown Skill Bars
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Dedication',
|
||||
valueTo: '90'
|
||||
}).wow.slideInDown(data-wow-delay='.05s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Knowledge',
|
||||
valueTo: '65'
|
||||
}).wow.slideInDown(data-wow-delay='.1s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Professionalism',
|
||||
valueTo: '100'
|
||||
}).wow.slideInDown(data-wow-delay='.15s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Expertise',
|
||||
valueTo: '75'
|
||||
}).wow.slideInDown(data-wow-delay='.2s')
|
||||
@@ -0,0 +1,33 @@
|
||||
.row.row-50
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Post Classic
|
||||
article.post-classic.wow.slideInLeft
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-1-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') News
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title Real Estate Guide: 7 Important Tips for Buying a Home
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Post Classic
|
||||
article.post-classic.wow.slideInLeft(data-wow-delay='.05s')
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-2-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') Tips
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title Start These Habits Now If You Want to Buy a Home Next Year
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Post Classic
|
||||
article.post-classic.wow.slideInLeft(data-wow-delay='.1s')
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-3-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') News
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title 7 Signs the Home You’re Buying Will Have Good Resale Value
|
||||
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInUp(href='grid-blog.html') View all Blog posts
|
||||
@@ -0,0 +1,51 @@
|
||||
.row.row-50.justify-content-center.justify-content-lg-start
|
||||
.col-md-10.col-lg-7.wow-outer
|
||||
// Post Block
|
||||
article.post-block.bg-gray-700
|
||||
+jpg('blog-layouts-5-637x456','post-block-image')
|
||||
.post-block-caption
|
||||
ul.post-block-meta
|
||||
li.wow-outer: span.wow.slideInLeft by Theresa Barnes
|
||||
li.wow-outer: a.button-winona.wow.slideInLeft(href='#') News
|
||||
li.wow-outer: time.wow.slideInLeft(datetime='2018') April 2, 2018
|
||||
h4.post-block-title: a(href=links.post) 7 Important Tips for Buying a Home
|
||||
|
||||
.post-block-dummy
|
||||
|
||||
.col-md-10.col-lg-5
|
||||
.post-light-group.wow-outer
|
||||
// Post Light
|
||||
article.post-light.wow.slideInLeft
|
||||
time.post-light-time(datetime='2018')
|
||||
span.post-light-time-big 29
|
||||
span.post-light-time-small April
|
||||
.post-light-main
|
||||
h4.post-light-title: a(href=links.post) Useful Habits for Potential Home Buyers
|
||||
ul.post-light-meta
|
||||
li by Mike Barnes
|
||||
li: a.button-winona(href='#') News
|
||||
|
||||
// Post Light
|
||||
article.post-light.wow.slideInLeft
|
||||
time.post-light-time(datetime='2018')
|
||||
span.post-light-time-big 30
|
||||
span.post-light-time-small April
|
||||
.post-light-main
|
||||
h4.post-light-title: a(href=links.post) 7 Signs of Your Home's Good Resale Value
|
||||
ul.post-light-meta
|
||||
li by Mike Barnes
|
||||
li: a.button-winona(href='#') News
|
||||
|
||||
// Post Light
|
||||
article.post-light.wow.slideInLeft
|
||||
time.post-light-time(datetime='2018')
|
||||
span.post-light-time-big 2
|
||||
span.post-light-time-small May
|
||||
.post-light-main
|
||||
h4.post-light-title: a(href=links.post) Single-Family Homes as a Housing Option
|
||||
ul.post-light-meta
|
||||
li by Mike Barnes
|
||||
li: a.button-winona(href='#') News
|
||||
|
||||
.wow-outer.button-outer
|
||||
a.button.button-primary.button-winona.wow.slideInDown(href='grid-blog.html') View all posts
|
||||
@@ -0,0 +1,21 @@
|
||||
.row.row-30
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Creative
|
||||
article.box-creative.wow.slideInDown
|
||||
.box-creative-icon.fl-bigmug-line-chat55
|
||||
h4.box-creative-title: a.post-modern-title(href='#') Residential Properties
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Creative
|
||||
article.box-creative.wow.slideInDown(data-wow-delay='.05s')
|
||||
.box-creative-icon.fl-bigmug-line-wallet26
|
||||
h4.box-creative-title: a.post-modern-title(href='#') Commercial Properties
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Creative
|
||||
article.box-creative.wow.slideInDown(data-wow-delay='.1s')
|
||||
.box-creative-icon.fl-bigmug-line-note35
|
||||
h4.box-creative-title: a.post-modern-title(href='#') Vacant Land
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
@@ -0,0 +1,67 @@
|
||||
.row.row-50
|
||||
.col-sm-6.col-lg-3.wow-outer
|
||||
// Profile Classic
|
||||
article.profile-classic.wow.slideInLeft
|
||||
.profile-classic-main
|
||||
+jpg('team-1-270x273', 'profile-classic-image')
|
||||
.profile-classic-caption
|
||||
.group.group-xs.group-middle
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-facebook(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-twitter(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-instagram(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-google(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-linkedin(href='#')
|
||||
|
||||
h5.profile-classic-title: a(href='#') Nathan Porter
|
||||
p.profile-classic-position CEO, Founder
|
||||
|
||||
.col-sm-6.col-lg-3.wow-outer
|
||||
// Profile Classic
|
||||
article.profile-classic.wow.slideInLeft(data-wow-delay='.05s')
|
||||
.profile-classic-main
|
||||
+jpg('team-2-270x273', 'profile-classic-image')
|
||||
.profile-classic-caption
|
||||
.group.group-xs.group-middle.profile-classic-group
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-facebook(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-twitter(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-instagram(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-google(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-linkedin(href='#')
|
||||
|
||||
h5.profile-classic-title: a(href='#') Jean Thompson
|
||||
p.profile-classic-position Project Manager
|
||||
|
||||
.col-sm-6.col-lg-3.wow-outer
|
||||
// Profile Classic
|
||||
article.profile-classic.wow.slideInLeft(data-wow-delay='.1s')
|
||||
.profile-classic-main
|
||||
+jpg('team-3-270x273', 'profile-classic-image')
|
||||
.profile-classic-caption
|
||||
.group.group-xs.group-middle.profile-classic-group
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-facebook(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-twitter(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-instagram(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-google(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-linkedin(href='#')
|
||||
|
||||
h5.profile-classic-title: a(href='#') Brian Payne
|
||||
p.profile-classic-position Manager
|
||||
|
||||
.col-sm-6.col-lg-3.wow-outer
|
||||
// Profile Classic
|
||||
article.profile-classic.wow.slideInLeft(data-wow-delay='.15s')
|
||||
.profile-classic-main
|
||||
+jpg('team-4-270x273', 'profile-classic-image')
|
||||
.profile-classic-caption
|
||||
.group.group-xs.group-middle.profile-classic-group
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-facebook(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-twitter(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-instagram(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-google(href='#')
|
||||
a.icon.icon-sm.icon-creative.mdi.mdi-linkedin(href='#')
|
||||
|
||||
h5.profile-classic-title: a(href='#') Marie Fernandez
|
||||
p.profile-classic-position Marketing Manager
|
||||
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInUp(href='#') View all Team
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
.slick-widget-testimonials.wow.fadeIn
|
||||
.slick-slider.carousel-child#child-carousel(
|
||||
data-for='.carousel-parent'
|
||||
data-arrows='true'
|
||||
data-loop='true'
|
||||
data-dots='false'
|
||||
data-swipe='true'
|
||||
data-items='1'
|
||||
data-sm-items='3'
|
||||
data-md-items='5'
|
||||
data-lg-items='5'
|
||||
data-xl-items='5'
|
||||
data-center-mode='true'
|
||||
data-slide-to-scroll='1')
|
||||
.item.wow-outer: +jpg('testimonials-person-1-96x96').wow.slideInLeft
|
||||
.item.wow-outer: +jpg('testimonials-person-2-96x96').wow.slideInLeft
|
||||
.item.wow-outer: +jpg('testimonials-person-3-96x96').wow.slideInLeft
|
||||
.item.wow-outer: +jpg('testimonials-person-4-96x96').wow.slideInLeft
|
||||
.item.wow-outer: +jpg('testimonials-person-5-96x96').wow.slideInLeft
|
||||
.item.wow-outer: +jpg('testimonials-person-3-96x96').wow.slideInLeft
|
||||
|
||||
|
||||
// Slick Carousel
|
||||
.slick-slider.carousel-parent(
|
||||
data-arrows='false'
|
||||
data-loop='true'
|
||||
data-dots='false'
|
||||
data-swipe='false'
|
||||
data-items='1'
|
||||
data-fade='true'
|
||||
data-child='#child-carousel'
|
||||
data-for='#child-carousel')
|
||||
.item
|
||||
// Quote Light 1
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Kelly McMillan
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
.quote-light-footer: +png('logo-the-oldbrand-83x64', 'quote-light-image')
|
||||
|
||||
.item
|
||||
// Quote Light 2
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Harold Barnett
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut sit amet, consectetur adipiscing elit, sed do eiusmod tempor labore et dolore magna aliqua.
|
||||
.quote-light-footer: +png('logo-havana-kabana-96x64', 'quote-light-image')
|
||||
|
||||
.item
|
||||
// Quote Light 3
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Albert Webb
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit consectetur adipiscing elit, sed do eiusmod tempor incididunt ut amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
.quote-light-footer: +png('logo-majestic-104x64', 'quote-light-image')
|
||||
|
||||
.item
|
||||
// Quote Light 4
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Samantha Lee
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit consectetur adipiscing elit, sed do eiusmod tempor incididunt ut amet, consectetur adipiscing elit, sed do aliqua.
|
||||
.quote-light-footer: +png('logo-hillplan-84x64', 'quote-light-image')
|
||||
|
||||
.item
|
||||
// Quote Light 5
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Bill Warner
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut consectetur adipiscing elit,.
|
||||
.quote-light-footer: +png('logo-brownie-103x61', 'quote-light-image')
|
||||
|
||||
.item
|
||||
// Quote Light 3
|
||||
blockquote.quote-light
|
||||
cite.quote-light-cite Albert Webb
|
||||
p.quote-light-caption Regular Client
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra!
|
||||
.quote-light-footer: +png('logo-majestic-104x64', 'quote-light-image')
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = '404 Page'
|
||||
|
||||
block page
|
||||
// Page content
|
||||
section.section.section-single.bg-gray-800.primary-overlay(style='background-image: url(images/bg-image-7.jpg);')
|
||||
.section-single-inner
|
||||
.section-single-dummy
|
||||
.section-single-main: .container
|
||||
.row.row-30
|
||||
.col-sm-6.text-center.text-sm-left: p.text-extra-large 404
|
||||
.col-sm-6
|
||||
.section-single-main-content
|
||||
h6.title-decorated.title-decorated-lg Page was not found
|
||||
p: span.text-width-2 You may have mistyped the address or the page may have moved.
|
||||
a.button.button-lg.button-primary.button-winona(href='index.html') Back to home page
|
||||
|
||||
|
||||
.footer-minimal.section-single-footer
|
||||
.container
|
||||
.footer-minimal-inner
|
||||
a.brand(href='index.html')
|
||||
+png(logo.inverse.trueSize)(srcset='images/' + logo.inverse.retina + '.png 2x')
|
||||
+rights
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = '503 Page'
|
||||
|
||||
block page
|
||||
// Page content
|
||||
section.section.section-single.bg-gray-800.primary-overlay(style='background-image: url(images/bg-image-6.jpg);')
|
||||
.section-single-inner
|
||||
.section-single-dummy
|
||||
.section-single-main: .container
|
||||
.row.row-30
|
||||
.col-sm-6.text-center.text-sm-left: p.text-extra-large 503
|
||||
.col-sm-6
|
||||
.section-single-main-content
|
||||
h6.title-decorated.title-decorated-lg Service is temporary unavailable
|
||||
p Sorry, we're offline right now to make our site even better.#[br]Please, come back later and check what we've been up to.
|
||||
a.button.button-lg.button-primary.button-winona(href='index.html') Back to home page
|
||||
|
||||
|
||||
.footer-minimal.section-single-footer
|
||||
.container
|
||||
.footer-minimal-inner
|
||||
a.brand(href='index.html')
|
||||
+png(logo.inverse.trueSize)(srcset='images/' + logo.inverse.retina + '.png 2x')
|
||||
+rights
|
||||
|
||||
+128
@@ -0,0 +1,128 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'about us'
|
||||
- var pageName = 'About us'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Working at CaseCraft
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between.flex-lg-row-reverse
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h3.text-uppercase Who We Are
|
||||
p.about-subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostru eiusmod tempor incididunt ut labore et.
|
||||
a.button.button-lg.button-primary.button-winona(href='about-us.html') View properties
|
||||
.col-md-10.col-lg-6.col-xl-6
|
||||
+jpg('careers-1-570x388', 'img-responsive')
|
||||
|
||||
|
||||
// Advantages and Achievements
|
||||
section.section.section-md.text-center.bg-gray-100
|
||||
.container
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInUp Why people Choose Us
|
||||
p.wow-outer: span.text-width-1.wow.slideInDown Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
.row.row-50
|
||||
.col-6.col-md-3.wow-outer
|
||||
// Counter Minimal
|
||||
article.counter-minimal.wow.slideInUp(data-wow-delay='.1s')
|
||||
.counter-minimal-icon.box-chloe__icon.linearicons-users2
|
||||
.counter-minimal-main: .counter 12
|
||||
h5.counter-minimal-title National Partners
|
||||
|
||||
.col-6.col-md-3.wow-outer
|
||||
// Counter Minimal
|
||||
article.counter-minimal.wow.slideInUp(data-wow-delay='.1s')
|
||||
.counter-minimal-icon.box-chloe__icon.linearicons-home-icon3
|
||||
.counter-minimal-main: .counter 238
|
||||
h5.counter-minimal-title Properties
|
||||
|
||||
.col-6.col-md-3.wow-outer
|
||||
// Counter Minimal
|
||||
article.counter-minimal.wow.slideInUp(data-wow-delay='.1s')
|
||||
.counter-minimal-icon.box-chloe__icon.linearicons-star
|
||||
.counter-minimal-main: .counter 19
|
||||
h5.counter-minimal-title Years of Experience
|
||||
|
||||
.col-6.col-md-3.wow-outer
|
||||
// Counter Minimal
|
||||
article.counter-minimal.wow.slideInUp(data-wow-delay='.1s')
|
||||
.counter-minimal-icon.box-chloe__icon.linearicons-apartment
|
||||
.counter-minimal-main: .counter 54
|
||||
h5.counter-minimal-title Qualified Brokers
|
||||
|
||||
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInUp Our Team
|
||||
.row.row-50.row-xxl-70.justify-content-center.justify-content-lg-start
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-1-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Nathalie Porter
|
||||
p.profile-creative-position Founder, Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Ms. Porter founded our company in 1989 with a vision to help guests and residents of the USA to easily find and buy or rent real estate in all 50 states.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-2-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') John Thompson
|
||||
p.profile-creative-position Sales Associate
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p John has been in sales and marketing for the past 15 years. He has excellent knowledge about the local market both residential and commercial.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-3-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Brian Payne
|
||||
p.profile-creative-position Realtor
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Brian is not only a Licensed Realtor but also holds the Title Producers and Mortgage Licenses, which makes him a very knowledgeable real estate expert.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-4-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Marie Fernandez
|
||||
p.profile-creative-position Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Marie’s goal is to provide clients with the highest level of marketing expertise and customer service to help them reach their uppermost real estate goals.
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,39 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Accordions'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Accordion & skill bars
|
||||
section.section.section-lg
|
||||
.container
|
||||
h6 Accordion & skill bars
|
||||
include ../includes/_row-accordion-skill-bars
|
||||
|
||||
// Accordion & photo
|
||||
section.section.section-md
|
||||
.container
|
||||
h6 Accordion & photo
|
||||
include ../includes/_row-accordion-and-photo
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,98 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'blog'
|
||||
- var pageName = 'Blog Layouts'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// 3 Column Layout
|
||||
section.section.section-lg.bg-gray-100.text-center
|
||||
.container
|
||||
h3 3 Column Layout
|
||||
include ../includes/_row-blog-3-cols
|
||||
|
||||
// 2 Column Layout
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3 2 Column Layout
|
||||
.row.row-50
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-1-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 5619 Walnut Hill Ln, Dallas, TX 75229
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1500/mon
|
||||
li 30 Sq. Ft.
|
||||
li 3 Bedrooms
|
||||
p A comfortable residential property located in a quiet and cozy area.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-2-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 1808 Bolingbroke Pl, Fort Worth, TX 76140
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1300/mon
|
||||
li 40 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p Perfect for those who love both city life and the countryside.
|
||||
|
||||
a.button.button-primary-outline.button-winona(href='grid-blog.html') View all
|
||||
|
||||
// News Posts Layout
|
||||
section.section.section-lg.bg-gray-100
|
||||
.container
|
||||
h3.text-center News Posts Layout
|
||||
include ../includes/_row-news-post-layout
|
||||
|
||||
// Residential property categories
|
||||
section.section-lg.text-center
|
||||
.container
|
||||
h3.text-uppercase Residential property categories
|
||||
p: span.text-width-1 At our agency, we work with various types of residential real estate property. You can find out more about our properties by browsing our website.
|
||||
.row.row-50.row-xxl-70.offset-top-2
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-1-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Single-Family Homes
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-2-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Townhouses
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-3-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Multi-Family Homes
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-4-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Condominiums
|
||||
.col-md-12.wow-outer
|
||||
a.button.button-primary-outline.button-winona(href='grid-blog.html') View all
|
||||
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Buttons'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Button Sizes
|
||||
section.section.section-sm.section-first
|
||||
.container
|
||||
h6 Button Sizes
|
||||
.group.group-middle
|
||||
.button.button-lg.button-primary.button-winona Large button
|
||||
.button.button-lg.button-primary-outline.button-winona Light Large
|
||||
.group.group-middle
|
||||
.button.button-primary.button-winona Medium button
|
||||
.button.button-primary-outline.button-winona Light Medium
|
||||
.group.group-middle
|
||||
.button.button-sm.button-primary.button-winona Small button
|
||||
.button.button-sm.button-primary-outline.button-winona Light Small
|
||||
|
||||
// Icon buttons
|
||||
section.section.section-sm
|
||||
.container
|
||||
h6 Icon buttons
|
||||
.group.group-middle
|
||||
.button.button-icon.button-icon-left.button-lg.button-primary.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
.button.button-icon.button-icon-left.button-lg.button-primary-outline.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
.group.group-middle
|
||||
.button.button-icon.button-icon-left.button-primary.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
.button.button-icon.button-icon-left.button-primary-outline.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
.group.group-middle
|
||||
.button.button-icon.button-icon-left.button-sm.button-primary.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
.button.button-icon.button-icon-left.button-sm.button-primary-outline.button-winona
|
||||
span.icon.mdi.mdi-magnify
|
||||
| Search
|
||||
|
||||
|
||||
// Social buttons
|
||||
section.section.section-sm.section-last
|
||||
.container
|
||||
h6 Social buttons
|
||||
include ../includes/_group-social-buttons
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
include ../components/_ui-career-classic
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Careers'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Working at CaseCraft
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between.flex-lg-row-reverse
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h3 Working at inHouse
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae. Tellus elementum sagittis vitae et leo duis ut diam. Vitae ultricies leo integer malesuada nunc vel risus.
|
||||
a.button.button-lg.button-primary.button-winona(href='about-us.html') Learn more
|
||||
|
||||
.col-md-10.col-lg-6.col-xl-6
|
||||
+jpg('careers-1-570x368', 'img-responsive')
|
||||
|
||||
// Available Vacancies
|
||||
section.section.section-lg.bg-gray-100.text-center
|
||||
.container
|
||||
h3 Available Vacancies
|
||||
.row.row-45
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Residential Broker',
|
||||
list: [
|
||||
{ iconClass: 'mdi mdi-calendar-clock', text: 'Full Time' },
|
||||
{ iconClass: 'mdi mdi-map-marker', text: 'San Diego' }
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Residential Appraiser',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Real Estate Agent',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Property Manager',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Leasing Consultant',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Commercial Broker',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
|
||||
a.button.button-lg.button-primary.button-winona(href='#') Join Us
|
||||
|
||||
// Thin CTA
|
||||
include ../sections/_section-thin-cta
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,34 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Coming Soon'
|
||||
|
||||
block page
|
||||
// Page content
|
||||
section.section.section-single.bg-gray-800(style='background-image: url(images/bg-image-5.jpg);')
|
||||
.section-single-inner
|
||||
.section-single-dummy
|
||||
.section-single-main: .container
|
||||
.row.row-30.justify-content-center.justify-content-sm-start
|
||||
.col-sm-10.col-md-9.col-lg-7.col-xl-6
|
||||
h6.title-decorated.title-decorated-lg We're getting ready to launch in
|
||||
// TimeCircles
|
||||
.countdown-wrap: .DateCountdown(data-type='until' data-date='2019-12-31 00:00:00' data-format='wdhms' data-color=colors.primary data-bg='rgba(245, 245, 245, 1)' data-width='0.02')
|
||||
p Our website is under construction, we are working very hard to give you the best experience on our new web site.
|
||||
.rd-mailform-wrap
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.form-inline(data-form-output="form-output-global", data-form-type='subscribe', method='post', action='bat/rd-mailform.php')
|
||||
.form-wrap
|
||||
input.form-input(id="subscribe-form-1-email" type="email" name="email" data-constraints="@Email @Required")
|
||||
label.form-label(for="subscribe-form-1-email") Your e-mail
|
||||
.form-button: button.button.button-primary.button-winona(type="submit") Subscribe
|
||||
|
||||
|
||||
.footer-minimal.section-single-footer
|
||||
.container
|
||||
.footer-minimal-inner
|
||||
a.brand(href='index.html')
|
||||
+png(logo.inverse.trueSize)(srcset='images/' + logo.inverse.retina + '.png 2x')
|
||||
+rights
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'contacts'
|
||||
- var pageName = 'Contacts'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
include ../sections/_section-contact-info
|
||||
include ../sections/_section-contact-form-and-map
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+195
@@ -0,0 +1,195 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Forms'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Newsletter form
|
||||
section.section-last.section-sm
|
||||
.container: h6: span(data-toggle='modal' data-target='#forms-modal-tip') Newsletter form #[span.tip-mark ?]
|
||||
include ../sections/_section-newsletter-form
|
||||
|
||||
// Small newsletter form
|
||||
section.section-last.section-last.section-sm
|
||||
.container: h6: span(data-toggle='modal' data-target='#forms-modal-tip') Small newsletter form #[span.tip-mark ?]
|
||||
section.section.section-md.bg-gray-700
|
||||
.container
|
||||
.row.justify-content-center
|
||||
.col-sm-9.col-md-6.col-lg-5.col-xl-4
|
||||
h4 Newsletter
|
||||
p.text-white Sign up to our newsletter and be the first to know about the latest news, special offers, events, and discounts.
|
||||
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.form-inline(data-form-output="form-output-global", data-form-type='subscribe', method='post', action='bat/rd-mailform.php')
|
||||
.form-wrap
|
||||
input.form-input(id="subscribe-form-2-email" type="email" name="email" data-constraints="@Email @Required")
|
||||
label.form-label(for="subscribe-form-2-email") E-mail
|
||||
.form-button
|
||||
button.button.button-primary.button-icon.button-icon-only.button-winona(type="submit" aria-label='submit')
|
||||
span.icon.mdi.mdi-email-outline
|
||||
|
||||
|
||||
// Photo newsletter form
|
||||
section.section-last.section-sm
|
||||
.container: h6: span(data-toggle='modal' data-target='#forms-modal-tip') Photo newsletter form #[span.tip-mark ?]
|
||||
section.section.section-lg.bg-image.bg-image-light(style='background-image: url(images/bg-image-1.jpg);')
|
||||
.container
|
||||
.row.justify-content-center
|
||||
.col-sm-10.col-md-8.col-lg-7.col-xl-6
|
||||
h3.wow-outer.text-center: span.wow.slideInUp Newsletter
|
||||
p.text-white.wow-outer: span.wow.slideInLeft Keep up with our always upcoming news and updates. Enter your e-mail and subscribe to our newsletter.
|
||||
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.form-inline.wow.fadeIn(data-wow-delay='.2s' data-form-output="form-output-global", data-form-type='subscribe', method='post', action='bat/rd-mailform.php')
|
||||
.form-wrap
|
||||
input.form-input(id="subscribe-form-3-email" type="email" name="email" data-constraints="@Email @Required")
|
||||
label.form-label(for="subscribe-form-3-email") Your e-mail
|
||||
.form-button
|
||||
button.button.button-primary.button-winona(type="submit") Subscribe
|
||||
// Map & contact form
|
||||
section.section-last.section-sm
|
||||
.container: h6 Map & contact form
|
||||
include ../sections/_section-contact-form-and-map
|
||||
|
||||
// Map & contact form with reCAPTCHA
|
||||
section.section-last.section-sm
|
||||
.container: h6 Map & contact form with reCAPTCHA
|
||||
section.section-last.section-sm.section.bg-gray-100
|
||||
.range.justify-content-xl-between
|
||||
.cell-xl-6.align-self-center.container
|
||||
.row
|
||||
.col-lg-9.cell-inner: .section-lg
|
||||
h3 Contact Us
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform(data-form-output='form-output-global', data-form-type='contact', method='post', action='bat/rd-mailform.php')
|
||||
.row.row-10
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='contact-2-first-name') First Name
|
||||
input#contact-2-first-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='contact-2-last-name') Last Name
|
||||
input#contact-2-last-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='contact-2-email') E-mail
|
||||
input#contact-2-email.form-input(type='email' name='email' data-constraints='@Email @Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='contact-2-phone') Phone
|
||||
input#contact-2-phone.form-input(type='text' name='phone' data-constraints='@PhoneNumber')
|
||||
|
||||
.col-12
|
||||
.form-wrap
|
||||
label.form-label-outside(for='contact-2-message') Your Message
|
||||
textarea#contact-2-message.form-input(name='message' data-constraints='@Required')
|
||||
|
||||
// Google captcha
|
||||
.form-wrap.text-left.form-validation-left
|
||||
.recaptcha#captcha1(data-sitekey='6LfZlSETAAAAAC5VW4R4tQP8Am_to4bM3dddxkEt')
|
||||
|
||||
.group.group-middle
|
||||
button.button.button-primary.button-winona(type='submit') Send Message
|
||||
p or use
|
||||
button.button.button-primary-outline.button-icon.button-icon-left.button-winona
|
||||
span.icon.text-primary.mdi.mdi-facebook-messenger
|
||||
| Messenger
|
||||
|
||||
.cell-xl-5.height-fill
|
||||
.rd-google-map(class="rd-google-map__model", data-marker="images/gmap_marker.png", data-marker-active="images/gmap_marker_active.png" data-styles='[{"featureType":"water","elementType":"geometry","stylers":[{"color":"#e9e9e9"},{"lightness":17}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ffffff"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#ffffff"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":16}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":21}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"color":"#dedede"},{"lightness":21}]},{"elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#ffffff"},{"lightness":16}]},{"elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#333333"},{"lightness":40}]},{"elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#f2f2f2"},{"lightness":19}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#fefefe"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#fefefe"},{"lightness":17},{"weight":1.2}]}]', data-zoom='14', data-x='-73.9874068', data-y='40.643180')
|
||||
ul.map_locations
|
||||
li(data-y='40.643180', data-x='-73.9874068')
|
||||
p 9870 St Vincent Place, Glasgow, DC 45 Fr 45.
|
||||
|
||||
|
||||
// Login form
|
||||
section.section-last.section-sm
|
||||
.container: h6 Login form
|
||||
section.section-last.section-sm.section.section-md.bg-gray-700
|
||||
.container
|
||||
.box-1
|
||||
h4 Sign In
|
||||
|
||||
form.rd-form.rd-form-small
|
||||
.form-wrap
|
||||
input#login-email.form-input(type='email' name='email' data-constraints='@Email @Required')
|
||||
label.form-label(for='login-email') E-mail
|
||||
|
||||
.form-wrap
|
||||
input#login-password.form-input(type='password' name='password' data-constraints='@Required')
|
||||
label.form-label(for='login-password') Password
|
||||
|
||||
.form-wrap
|
||||
button.button.button-primary.button-winona(type='submit') Sign in
|
||||
|
||||
// Registration form
|
||||
section.section-last.section.section-md
|
||||
.container
|
||||
.box-1
|
||||
h4 Registration
|
||||
|
||||
form.rd-form.rd-form-small
|
||||
.form-wrap
|
||||
input#register-name.form-input(type='text' name='username' data-constraints='@Required')
|
||||
label.form-label(for='register-name') Username
|
||||
|
||||
.form-wrap
|
||||
input#register-email.form-input(type='email' name='email' data-constraints='@Email @Required')
|
||||
label.form-label(for='register-email') E-mail
|
||||
|
||||
.form-wrap
|
||||
input#register-password.form-input(type='password' name='password' data-constraints='@Required')
|
||||
label.form-label(for='register-password') Password
|
||||
|
||||
.form-wrap
|
||||
input#register-password-2.form-input(type='password' name='password' data-constraints='@Required')
|
||||
label.form-label(for='register-password-2') Confirm Password
|
||||
|
||||
.form-wrap
|
||||
button.button.button-block.button-primary.button-winona(type='submit') Create an Account
|
||||
|
||||
.form-wrap
|
||||
.text-decoration-lines
|
||||
span.text-decoration-lines-content or enter with
|
||||
|
||||
.form-wrap
|
||||
.button-group
|
||||
a.button.button-facebook.button-icon.button-icon-only.button-winona(href='#' aria-label='Facebook'): span.icon.mdi.mdi.mdi-facebook
|
||||
a.button.button-twitter.button-icon.button-icon-only.button-winona(href='#' aria-label='Twitter'): span.icon.mdi.mdi-twitter
|
||||
a.button.button-google.button-icon.button-icon-only.button-winona(href='#' aria-label='Google+'): span.icon.mdi.mdi-google
|
||||
|
||||
.modal.fade#forms-modal-tip
|
||||
.modal-dialog(role='document')
|
||||
.modal-content
|
||||
.modal-header
|
||||
h6 Subscribe form tip
|
||||
button.close(type='button', data-dismiss='modal', aria-label='Close'): span(aria-hidden='true')
|
||||
.modal-body
|
||||
p Subscribe form works as an e-mail newsletter.
|
||||
p To activate such form with an enabled #[strong MailChimp] service, replace the #[code .rd-mailform] class with #[code .mailchimp-mailform] and the form's action with MailChimp subscription URL.
|
||||
p To activate the #[strong Campaign Monitor] service, you need to replace the form’s [#code.rd-mailform] class with #[code .campaign-mailform] and copy the form's action and the name of the input field from the form generated by Campaign Monitor service.
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,81 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'blog'
|
||||
- var pageName = 'Grid Blog'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.row-xxl-70
|
||||
.col-md-6.scaleFadeInWrap
|
||||
// Post Modern
|
||||
.wow.scaleFadeIn
|
||||
article.post-modern
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-1-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 7 Important Tips for Buying a Home
|
||||
ul.post-modern-meta
|
||||
li by Mike Barnes
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
li: a.button-winona(href='#') News
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.
|
||||
|
||||
.col-md-6.scaleFadeInWrap
|
||||
// Post Modern
|
||||
.wow.scaleFadeIn(data-wow-delay='.1s')
|
||||
article.post-modern
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-2-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title Useful Habits for Potential Home Buyers
|
||||
ul.post-modern-meta
|
||||
li by Mike Barnes
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
li: a.button-winona(href='#') Real Estate
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.
|
||||
|
||||
.col-md-6.scaleFadeInWrap
|
||||
// Post Modern
|
||||
.wow.scaleFadeIn
|
||||
article.post-modern
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-3-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 7 Signs Your Home Will Have Good Resale Value
|
||||
ul.post-modern-meta
|
||||
li by Mike Barnes
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
li: a.button-winona(href='#') News
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.
|
||||
|
||||
.col-md-6.scaleFadeInWrap
|
||||
// Post Modern
|
||||
.wow.scaleFadeIn(data-wow-delay='.1s')
|
||||
article.post-modern
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-4-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title Single-Family Homes as a Housing Option
|
||||
ul.post-modern-meta
|
||||
li by Mike Barnes
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
li: a.button-winona(href='#') Real Estate
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.
|
||||
|
||||
.pagination
|
||||
.page-item.active: a.page-link.button-winona(href='#') 1
|
||||
.page-item: a.page-link.button-winona(href='#') 2
|
||||
.page-item: a.page-link.button-winona(href='#') 3
|
||||
.page-item: a.page-link.button-winona(href='#') 4
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+282
@@ -0,0 +1,282 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
include ../components/_ui-thumbnail-creative
|
||||
include ../components/_ui-thumbnail-indigo
|
||||
include ../components/_ui-card
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'home'
|
||||
- var pageName = 'Home'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
.swiper-container.swiper-slider.swiper-slider-minimal(
|
||||
data-loop='true'
|
||||
data-slide-effect='fade'
|
||||
data-autoplay='false'
|
||||
data-simulate-touch='true')
|
||||
.swiper-wrapper
|
||||
.swiper-slide.swiper-slide_video(data-slide-bg='images/slider-minimal-slide-1-1920x968.jpg')
|
||||
.container
|
||||
.jumbotron-classic-content
|
||||
.wow-outer: .title-docor-text.font-weight-bold.title-decorated.text-uppercase.wow.slideInLeft.text-white Offering Diverse
|
||||
h1.text-uppercase.text-white.font-weight-bold.wow-outer: span.wow.slideInDown(data-wow-delay='.2s') Properties
|
||||
p.text-white.wow-outer: span.wow.slideInDown(data-wow-delay='.35s') inHouse provides you with lots of great properties throughout the USA so that you could easily choose your dream property.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-md.button-primary.button-winona.wow.slideInDown(href='properties.html' data-wow-delay='.4s') View Properties
|
||||
.swiper-slide(data-slide-bg='images/slider-minimal-slide-2-1920x968.jpg')
|
||||
.container
|
||||
.jumbotron-classic-content
|
||||
.wow-outer: .title-docor-text.font-weight-bold.title-decorated.text-uppercase.wow.slideInLeft.text-white Easily
|
||||
h1.text-uppercase.text-white.font-weight-bold.wow-outer: span.wow.slideInDown(data-wow-delay='.2s') Rent & Sale
|
||||
p.text-white.wow-outer: span.wow.slideInDown(data-wow-delay='.35s') With the help of our services and property management solutions, you can rent or sell any house or apartment.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-md.button-primary.button-winona.wow.slideInDown(href='properties.html' data-wow-delay='.4s') View properties
|
||||
.swiper-slide(data-slide-bg='images/slider-minimal-slide-3-1920x968.jpg')
|
||||
.container
|
||||
.jumbotron-classic-content
|
||||
.wow-outer: .title-docor-text.font-weight-bold.title-decorated.text-uppercase.wow.slideInLeft.text-white More Than 20 Years of
|
||||
h1.text-uppercase.text-white.font-weight-bold.wow-outer: span.wow.slideInDown(data-wow-delay='.2s') Experience
|
||||
p.text-white.wow-outer: span.wow.slideInDown(data-wow-delay='.35s') Founded in 1989, our company is a team of renowned property management and real estate experts always ready to help you.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-md.button-primary.button-winona.wow.slideInDown(href='properties.html' data-wow-delay='.4s') View properties
|
||||
.swiper-pagination-outer.container: .swiper-pagination.swiper-pagination-modern.swiper-pagination-marked(data-index-bullet='true')
|
||||
section.bg-gray-100.section-md
|
||||
.container
|
||||
form
|
||||
.form-wrap.form-wrap-select.wow.fadeInLeftSmall(data-wow-delay='.3s')
|
||||
.row.row-20.justify-content-md-center
|
||||
// Select 2
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Property Types
|
||||
option(value='2') Residential
|
||||
option(value='3') Commercial
|
||||
option(value='4') Vacant Land
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All States
|
||||
option(value='2') New York
|
||||
option(value='3') Washington
|
||||
option(value='4') Georgia
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Cities
|
||||
option(value='2') New York
|
||||
option(value='3') Seattle
|
||||
option(value='4') Atlanta
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Listing Types
|
||||
option(value='2') Exclusive Right to Sell
|
||||
option(value='3') Exclusive Agency
|
||||
option(value='4') Open Agency
|
||||
// Select 2
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Bedrooms
|
||||
option(value='2') Master Bedrooms
|
||||
option(value='3') Guest Bedrooms
|
||||
option(value='4') Teen Bedrooms
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
.rd-range(data-min="0" data-max="350" data-start="[50, 250]" data-step="1" data-tooltip="false" data-min-diff="50" data-input=".rd-range-input-value-1" data-input-2=".rd-range-input-value-2")
|
||||
.rd-range-wrap
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-1(type="text" name="value-1")
|
||||
span.price-devider -
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-2(type="text" name="value-2")
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
.rd-range(data-min="0" data-max="350" data-start="[50, 250]" data-step="1" data-tooltip="false" data-min-diff="50" data-input=".rd-range-input-value-1" data-input-2=".rd-range-input-value-2")
|
||||
.rd-range-wrap
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-1(type="text" name="value-1")
|
||||
span.price-devider -
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-2(type="text" name="value-2")
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
a.button.button-md.button-primary.button-winona.form-btn.wow.slideInDown(href='#' data-wow-delay='.4s') Search
|
||||
section.section.section-md.text-center
|
||||
.container
|
||||
h3.text-uppercase.font-weight-bold.wow-outer: span.wow.slideInDown Popular properties
|
||||
.row.row-50.offset-top-2
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-1-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 5619 Walnut Hill Ln, Dallas, TX 75229
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1500/mon
|
||||
li 30 Sq. Ft.
|
||||
li 3 Bedrooms
|
||||
p A comfortable residential property located in a quiet and cozy area.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-2-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 1808 Bolingbroke Pl, Fort Worth, TX 76140
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1300/mon
|
||||
li 40 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p Perfect for those who love both city life and the countryside.
|
||||
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-3-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 924 Bel Air Rd, Los Angeles, CA 90077
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') 1800/mon
|
||||
li 50 Sq. Ft.
|
||||
li 4 Bedrooms
|
||||
p Located in 5 mins from downtown, this property is great for anyone.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-4-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 13510 W Cheery Lynn Rd, Avondale, AZ 85392
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $2700/mon
|
||||
li 90 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p A luxury mansion for people who enjoy the high-end amenities.
|
||||
|
||||
.col-md-12.wow-outer
|
||||
a(href="single-property.html").button.button-primary.button-winona.button-md view More properties
|
||||
|
||||
|
||||
include ../sections/_section-small-features
|
||||
// Services
|
||||
section.section-lg.text-center
|
||||
.container
|
||||
h3.text-uppercase Residential property categories
|
||||
p: span.text-width-1 At our agency, we work with various types of residential real estate property. You can find out more about our properties by browsing our website.
|
||||
.row.row-50.row-xxl-70.offset-top-2
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-1-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-service.html') Single-Family Homes
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-2-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Townhouses
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-3-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Multi-Family Homes
|
||||
|
||||
.col-sm-6.col-lg-3
|
||||
// Thumbnail Light
|
||||
article.thumbnail-light
|
||||
a.thumbnail-light-media(href='single-property.html'): +jpg('service-thumbnail-4-270x300', 'thumbnail-light-image')
|
||||
h4.thumbnail-light-title: a(href='single-property.html') Condominiums
|
||||
.col-md-12.wow-outer
|
||||
a(href="properties.html").button.button-primary.button-winona.button-md view all properties
|
||||
include ../sections/_section-our-team
|
||||
// Best offer
|
||||
section.section.section-1.bg-primary-darker.text-center(style='background-image: url(images/bg-1-1920-455.jpg);')
|
||||
.container
|
||||
.row.justify-content-center
|
||||
.col-sm-10.col-lg-7.col-xl-6
|
||||
h3.wow-outer: span.wow.slideInDown.text-uppercase Best offers
|
||||
p.heading-subtitle of September
|
||||
p.wow-outer.offset-top-4: span.wow.slideInDown(data-wow-delay='.05s') With a variety of accountants available at our company, you can always choose one that fits your corporate requirements.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-primary-white.button-winona.wow.slideInDown(href='#' data-wow-delay='.1s') Read more
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3.wow-outer: span.wow.slideInDown.text-uppercase Testimonials
|
||||
// Owl Carousel
|
||||
.owl-carousel.wow.fadeIn(
|
||||
data-items='1'
|
||||
data-md-items='2'
|
||||
data-lg-items='3'
|
||||
data-dots='true'
|
||||
data-nav='false'
|
||||
data-loop='true'
|
||||
data-margin='30'
|
||||
data-stage-padding='0'
|
||||
data-mouse-drag="false")
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-6-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Albert Webb
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p I have just bought an apartment in LA thanks to you and your brokers. Everything went smooth and easy, the price was quite affordable, and I’m sure I will use your services again in the future.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-1-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Kelly McMillan
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p I have recently sold my rental property in Nelson via inHouse. Everything about the sale was made seamless by your team. You gave me great advice about what was necessary to expedite the sale.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-2-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Harold Barnett
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p I really appreciate your time and expertise in helping me find and buy my current home in Seattle, WA. Hope we can do business again in the future and I will recommend you to family and friends.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-3-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Bill Warner
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p I have just sold a property with inHouse and I can’t thank them enough. Their team has great communication skills and they have regularly communicated with me throughout the whole process.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-4-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Ann Lee
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p Your skilled team helped me make the dream of selling my old property a reality. The sale went smoothly, and I just closed on an ideal new place I am excited to call home. Thank you for your great services!
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-5-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Peter Clarkson
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p I have to say that inHouse has the best brokers we've ever worked with. Their professionalism, personality, attention to detail, responsiveness and ability to close the deal are outstanding!
|
||||
|
||||
include ../sections/_section-contact-form-and-map
|
||||
|
||||
include ../sections/_section-contact-info
|
||||
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Large Features'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Overview
|
||||
include ../sections/_section-about-1
|
||||
|
||||
// A Few Words About Us
|
||||
include ../sections/_section-about-2
|
||||
|
||||
// A Few Words About Us
|
||||
include ../sections/_section-about-3
|
||||
|
||||
// A Few Words About Us
|
||||
include ../sections/_section-about-4
|
||||
|
||||
// A Few Words About Us
|
||||
include ../sections/_section-about-5
|
||||
|
||||
// Our History
|
||||
include ../sections/_section-our-history
|
||||
|
||||
// Profile
|
||||
include ../sections/_section-profile
|
||||
|
||||
// Careers
|
||||
include ../sections/_section-careers
|
||||
|
||||
// Partners
|
||||
include ../sections/_section-partners
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,86 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'about us'
|
||||
- var pageName = 'Our team'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInUp Our Team
|
||||
.row.row-50.row-xxl-70.justify-content-center.justify-content-lg-start
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-1-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Nathalie Porter
|
||||
p.profile-creative-position Founder, Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Ms. Porter founded our company in 1989 with a vision to help guests and residents of the USA to easily find and buy or rent real estate in all 50 states.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-2-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') John Thompson
|
||||
p.profile-creative-position Sales Associate
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p John has been in sales and marketing for the past 15 years. He has excellent knowledge about the local market both residential and commercial.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-3-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Brian Payne
|
||||
p.profile-creative-position Realtor
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Brian is not only a Licensed Realtor but also holds the Title Producers and Mortgage Licenses, which makes him a very knowledgeable real estate expert.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-4-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Marie Fernandez
|
||||
p.profile-creative-position Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Marie’s goal is to provide clients with the highest level of marketing expertise and customer service to help them reach their uppermost real estate goals.
|
||||
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
|
||||
include ../sections/_section-contact-form-and-map
|
||||
|
||||
include ../sections/_section-contact-info
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,51 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Privacy Policy'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Privacy Policy
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row
|
||||
.col-xl-8
|
||||
// Terms list
|
||||
dl.list-terms
|
||||
dt General Information
|
||||
dd Welcome to our Privacy Policy page! When you use our web site services, you trust us with your information. This Privacy Policy is meant to help you understand what data we collect, why we collect it, and what we do with it. When you share information with us, we can make our services even better for you. For instance, we can show you more relevant search results and ads, help you connect with people or to make sharing with others quicker and easier. As you use our services, we want you to be clear how we’re using information and the ways in which you can protect your privacy. This is important; we hope you will take time to read it carefully. Remember, you can find controls to manage your information and protect your privacy and security. We’ve tried to keep it as simple as possible.
|
||||
|
||||
dt Right to Access, Correct and Delete Data and to Object to Data Processing
|
||||
dd Our customers have the right to access, correct and delete personal data relating to them, and to object to the processing of such data, by addressing a written request, at any time. The Company makes every effort to put in place suitable precautions to safeguard the security and privacy of personal data, and to prevent it from being altered, corrupted, destroyed or accessed by unauthorized third parties. However, the Company does not control each and every risk related to the use of the Internet, and therefore warns the Site users of the potential risks involved in the functioning and use of the Internet. The Site may include links to other web sites or other internet sources. As the Company cannot control these web sites and external sources, the Company cannot be held responsible for the provision or display of these web sites and external sources, and may not be held liable for the content, advertising, products, services or any other material available on or from these web sites or external sources.
|
||||
|
||||
dt Management of Personal Data
|
||||
dd You can view or edit your personal data online for many of our services. You can also make choices about our collection and use of your data. How you can access or control your personal data will depend on which services you use. You can choose whether you wish to receive promotional communications from our web site by email, SMS, physical mail, and telephone. If you receive promotional email or SMS messages from us and would like to opt out, you can do so by following the directions in that message. You can also make choices about the receipt of promotional email, telephone calls, and postal mail by visiting and signing into Company Promotional Communications Manager, which allows you to update contact information, manage contact preferences, opt out of email subscriptions, and choose whether to share your contact information with our partners. These choices do not apply to mandatory service communications that are part of certain web site services.
|
||||
|
||||
dt Information We Collect
|
||||
dd Our store collects data to operate effectively and provide you the best experiences with our services. You provide some of this data directly, such as when you create a personal account. We get some of it by recording how you interact with our services by, for example, using technologies like cookies, and receiving error reports or usage data from software running on your device. We also obtain data from third parties (including other companies). For example, we supplement the data we collect by purchasing demographic data from other companies. We also use services from other companies to help us determine a location based on your IP address in order to customize certain services to your location. The data we collect depends on the services and features you use.
|
||||
|
||||
dt How We Use Your Information
|
||||
dd Our web site uses the data we collect for three basic purposes: to operate our business and provide (including improving and personalizing) the services we offer, to send communications, including promotional communications, and to display advertising. In carrying out these purposes, we combine data we collect through the various web site services you use to give you a more seamless, consistent and personalized experience. However, to enhance privacy, we have built in technological and procedural safeguards designed to prevent certain data combinations. For example, we store data we collect from you when you are unauthenticated (not signed in) separately from any account information that directly identifies you, such as your name, email address or phone number.
|
||||
|
||||
dt Sharing Your Information
|
||||
dd We share your personal data with your consent or as necessary to complete any transaction or provide any service you have requested or authorized. For example, we share your content with third parties when you tell us to do so. When you provide payment data to make a purchase, we will share payment data with banks and other entities that process payment transactions or provide other financial services, and for fraud prevention and credit risk reduction. In addition, we share personal data among our controlled affiliates and subsidiaries. We also share personal data with vendors or agents working on our behalf for the purposes described in this statement. For example, companies we've hired to provide customer service support or assist in protecting and securing our systems and services may need access to personal data in order to provide those functions. In such cases, these companies must abide by our data privacy and security requirements and are not allowed to use personal data they receive from us for any other purpose. We may also disclose personal data as part of a corporate transaction such as a merger or sale of assets.
|
||||
|
||||
a.privacy-link(href='mailto:#') privacy@demolink.org
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,65 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
include ../components/_ui-progress-bar-linear
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Progress Bars'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Skill Bars
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h6 Skill Bars
|
||||
+progress-bar-linear({
|
||||
title: 'Dedication',
|
||||
valueTo: '90'
|
||||
})
|
||||
|
||||
+progress-bar-linear({
|
||||
title: 'Knowledge',
|
||||
valueTo: '65'
|
||||
})
|
||||
|
||||
+progress-bar-linear({
|
||||
title: 'Professionalism',
|
||||
valueTo: '100'
|
||||
})
|
||||
|
||||
+progress-bar-linear({
|
||||
title: 'Expertise',
|
||||
valueTo: '75'
|
||||
})
|
||||
|
||||
.container
|
||||
h6 Countdown
|
||||
|
||||
// Countdown
|
||||
+parallax({
|
||||
img: 'parallax-1'
|
||||
}).section-lg.bg-gray-800
|
||||
.container
|
||||
// TimeCircles
|
||||
.countdown-wrap
|
||||
.DateCountdown(data-type='until' data-date='2019-12-31 00:00:00' data-format='wdhms' data-color=colors.primary data-bg='rgba(245, 245, 245, 1)' data-width='0.02')
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+154
@@ -0,0 +1,154 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'properties'
|
||||
- var pageName = 'Properties'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
section.bg-gray-100.section-md
|
||||
.container
|
||||
form
|
||||
.form-wrap.form-wrap-select.wow.fadeInLeftSmall(data-wow-delay='.3s')
|
||||
.row.row-20.justify-content-md-center
|
||||
// Select 2
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Property Types
|
||||
option(value='2') Residential
|
||||
option(value='3') Commercial
|
||||
option(value='4') Vacant Land
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All States
|
||||
option(value='2') New York
|
||||
option(value='3') Washington
|
||||
option(value='4') Georgia
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Cities
|
||||
option(value='2') New York
|
||||
option(value='3') Seattle
|
||||
option(value='4') Atlanta
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Listing Types
|
||||
option(value='2') Exclusive Right to Sell
|
||||
option(value='3') Exclusive Agency
|
||||
option(value='4') Open Agency
|
||||
// Select 2
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
select.form-input.select(name='find-job-location' data-minimum-results-for-search="Infinity" )
|
||||
option(value='1') All Bedrooms
|
||||
option(value='2') Master Bedrooms
|
||||
option(value='3') Guest Bedrooms
|
||||
option(value='4') Teen Bedrooms
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
.rd-range(data-min="0" data-max="350" data-start="[50, 250]" data-step="1" data-tooltip="false" data-min-diff="50" data-input=".rd-range-input-value-1" data-input-2=".rd-range-input-value-2")
|
||||
.rd-range-wrap
|
||||
.rd-range-form-wrap
|
||||
input.rd-range-input.rd-range-input-value-1(type="text" name="value-1")
|
||||
span SqFt
|
||||
span.price-devider -
|
||||
.rd-range-form-wrap
|
||||
input.rd-range-input.rd-range-input-value-2(type="text" name="value-2")
|
||||
span SqFt
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
.rd-range(data-min="0" data-max="350" data-start="[50, 250]" data-step="1" data-tooltip="false" data-min-diff="50" data-input=".rd-range-input-value-1" data-input-2=".rd-range-input-value-2")
|
||||
.rd-range-wrap
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-1(type="text" name="value-1")
|
||||
span.price-devider -
|
||||
.rd-range-form-wrap
|
||||
span $
|
||||
input.rd-range-input.rd-range-input-value-2(type="text" name="value-2")
|
||||
.col-xl-3.col-lg-3.col-md-4.col-sm-6.col-12
|
||||
a.button.button-md.button-primary.button-winona.form-btn.wow.slideInDown(href='#' data-wow-delay='.4s') Search
|
||||
section.section.section-md.text-center
|
||||
.container
|
||||
h3.text-uppercase.font-weight-bold.wow-outer: span.wow.slideInDown Popular properties
|
||||
.row.row-50.offset-top-2
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-1-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 5619 Walnut Hill Ln, Dallas, TX 75229
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1500/mon
|
||||
li 30 Sq. Ft.
|
||||
li 3 Bedrooms
|
||||
p A comfortable residential property located in a quiet and cozy area.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-2-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 1808 Bolingbroke Pl, Fort Worth, TX 76140
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1300/mon
|
||||
li 40 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p Perfect for those who love both city life and the countryside.
|
||||
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-3-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 924 Bel Air Rd, Los Angeles, CA 90077
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') 1800/mon
|
||||
li 50 Sq. Ft.
|
||||
li 4 Bedrooms
|
||||
p Located in 5 mins from downtown, this property is great for anyone.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-4-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 13510 W Cheery Lynn Rd, Avondale, AZ 85392
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $2700/mon
|
||||
li 90 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p A luxury mansion for people who enjoy the high-end amenities.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-5-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 12043 33rd Ave NE, Seattle, WA 98125
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') 1250/mon
|
||||
li 35 Sq. Ft.
|
||||
li 3 Bedrooms
|
||||
p A great investment for a small family looking for a cozy house.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-6-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 1550 Olympian Cir SW # 3, Atlanta, GA 30310
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1620/mon
|
||||
li 45 Sq. Ft.
|
||||
li 2 Bedrooms
|
||||
p A great property with a beautiful backyard and lots of amenities.
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,40 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Search Results'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Search results
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row
|
||||
.col-lg-11.col-xl-8
|
||||
// RD Search
|
||||
form.rd-form.rd-search.rd-search-classic(action='search-results.html' method='GET')
|
||||
.form-wrap
|
||||
label.form-label-outside(for='rd-search-form-input') Search
|
||||
.form-wrap-inner
|
||||
input.form-input#rd-search-form-input(type='text' name='s' autocomplete='off')
|
||||
button.rd-search-submit(type='submit' aria-label='Submit')
|
||||
|
||||
.rd-search-results
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
|
||||
@@ -0,0 +1,132 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'blog'
|
||||
- var pageName = 'Sidebar Blog'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
section.section.section-lg
|
||||
.container
|
||||
article.blog-layout
|
||||
.blog-layout-main
|
||||
.row.row-50.row-xxl-70
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-1-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') News
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title Real Estate Guide: 7 Important Tips for Buying a Home
|
||||
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-2-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') Tips
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title Start These Habits Now If You Want to Buy a Home Next Year
|
||||
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-3-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') News
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title 7 Signs the Home You’re Buying Will Have Good Resale Value
|
||||
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-4-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') Real Estate
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title Single-Family Homes as a Housing Option
|
||||
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-5-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') News
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title The Real Estate Trends That Are Taking Over
|
||||
|
||||
|
||||
.col-sm-6
|
||||
// Post Classic
|
||||
article.post-classic
|
||||
a.post-classic-media(href=links.post): +jpg('sidebar-blog-6-370x264')
|
||||
ul.post-classic-meta
|
||||
li: a.button-winona(href='#') Tips
|
||||
li: time(datetime='2018') Apr 21, 2018 at 12:05 pm
|
||||
h4.post-classic-title: a(href=links.post).post-modern-title 5 Vital Tips If You’re Buying Real Estate in New York City
|
||||
|
||||
.pagination
|
||||
.page-item.active: a.page-link.button-winona(href='#') 1
|
||||
.page-item: a.page-link.button-winona(href='#') 2
|
||||
.page-item: a.page-link.button-winona(href='#') 3
|
||||
.page-item: a.page-link.button-winona(href='#') 4
|
||||
|
||||
|
||||
.blog-layout-aside
|
||||
.blog-layout-aside-item
|
||||
p.blog-layout-aside-title Search Blog
|
||||
// RD Search
|
||||
form.rd-form.rd-search.rd-search-classic(action='search-results.html' method='GET')
|
||||
.form-wrap
|
||||
input.form-input#rd-search-form-input(type='text' name='s' autocomplete='off')
|
||||
label.form-label(for='rd-search-form-input') Search
|
||||
|
||||
button.rd-search-submit(type='submit')
|
||||
|
||||
.blog-layout-aside-item
|
||||
p.blog-layout-aside-title Archive
|
||||
ul.list-marked
|
||||
li: a(href='#') May 2018
|
||||
li: a(href='#') April 2018
|
||||
li: a(href='#') March 2018
|
||||
li: a(href='#') February 2018
|
||||
li: a(href='#') January 2018
|
||||
|
||||
.blog-layout-aside-item
|
||||
p.blog-layout-aside-title About Us
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.blog-layout-aside-item
|
||||
p.blog-layout-aside-title Categories
|
||||
ul.list-marked
|
||||
li: a(href='#') News
|
||||
li: a(href='#') Real Estate
|
||||
li: a(href='#') Tips
|
||||
li: a(href='#') Properties
|
||||
li: a(href='#') Residential
|
||||
|
||||
.blog-layout-aside-item
|
||||
p.blog-layout-aside-title Tags
|
||||
ul.list-inline-comma
|
||||
li: a.button-winona(href='#') News
|
||||
li: a.button-winona(href='#') Articles
|
||||
li: a.button-winona(href='#') Real Estate
|
||||
li: a.button-winona(href='#') Management
|
||||
li: a.button-winona(href='#') Properties
|
||||
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,147 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'blog'
|
||||
- var pageName = 'Single Blog Post'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50
|
||||
.col-lg-8
|
||||
article.post-creative
|
||||
h3.post-creative-title.text-none-transform Real Estate Guide: 7 Important Tips for Buying a Home
|
||||
ul.post-creative-meta
|
||||
li
|
||||
span.icon.mdi.mdi-calendar-clock
|
||||
time(datetime='2018') May 9, 2018 at 6:09 pm
|
||||
li
|
||||
span.icon.mdi.mdi-tag-multiple
|
||||
a(href='#') Article
|
||||
|
||||
h4 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
|
||||
+jpg('single-blog-post-1-770x458')
|
||||
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
// Quote Light
|
||||
blockquote.quote-light
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
+jpg('single-blog-post-2-770x458')
|
||||
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
|
||||
ul.post-creative-footer
|
||||
li Share this post!
|
||||
li
|
||||
include ../includes/_group-social-buttons
|
||||
|
||||
.section-sm
|
||||
h3 Comments
|
||||
.comment-classic-group
|
||||
// Comment Classic
|
||||
article.comment-classic
|
||||
figure.comment-classic-figure: +jpg('comment-1-48x48', 'comment-classic-image')
|
||||
.comment-classic-main
|
||||
p.comment-classic-name Albert Webb
|
||||
.comment-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
ul.comment-classic-meta
|
||||
li: time(datetime='2018') May, 9 2018 at 9:06 am
|
||||
li: a.comment-classic-reply(href='#' aria-label='reply')
|
||||
|
||||
.comment-classic-group
|
||||
// Comment Classic
|
||||
article.comment-classic
|
||||
figure.comment-classic-figure: +jpg('comment-2-48x48', 'comment-classic-image')
|
||||
.comment-classic-main
|
||||
p.comment-classic-name Theresa Barnes
|
||||
.comment-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
ul.comment-classic-meta
|
||||
li: time(datetime='2018') May, 9 2018 at 9:47 am
|
||||
li: a.comment-classic-reply(href='#' aria-label='reply')
|
||||
|
||||
.comment-classic-group
|
||||
// Comment Classic
|
||||
article.comment-classic
|
||||
figure.comment-classic-figure: +jpg('comment-3-48x48', 'comment-classic-image')
|
||||
.comment-classic-main
|
||||
p.comment-classic-name Jason Hughes
|
||||
.comment-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
ul.comment-classic-meta
|
||||
li: time(datetime='2018') May, 8 2018 at 12:08 pm
|
||||
li: a.comment-classic-reply(href='#' aria-label='reply')
|
||||
|
||||
.section-sm.section-bottom-0
|
||||
h3 Send a Comment
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform(data-form-output='form-output-global', data-form-type='contact', method='post', action='bat/rd-mailform.php')
|
||||
.row.row-10
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='comment-first-name') First Name
|
||||
input#comment-first-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='comment-last-name') Last Name
|
||||
input#comment-last-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='comment-email') E-mail
|
||||
input#comment-email.form-input(type='email' name='email' data-constraints='@Email @Required')
|
||||
|
||||
.col-md-6
|
||||
.form-wrap
|
||||
label.form-label-outside(for='comment-phone') Phone
|
||||
input#comment-phone.form-input(type='text' name='phone' data-constraints='@PhoneNumber')
|
||||
|
||||
.col-12
|
||||
.form-wrap
|
||||
label.form-label-outside(for='comment-message') Your Message
|
||||
textarea#comment-message.form-input(name='message' data-constraints='@Required')
|
||||
|
||||
|
||||
button.button.button-primary.button-winona(type='submit') Submit
|
||||
|
||||
.col-lg-4
|
||||
// Profile Thin
|
||||
article.profile-thin
|
||||
.profile-thin-aside
|
||||
+jpg('profile-thin-2-168x168', 'profile-thin-image')
|
||||
a.profile-thin-contact-button(href='mailto:#')
|
||||
span.icon.mdi.mdi-email-outline
|
||||
span.icon.mdi.mdi-email-outline
|
||||
.profile-thin-main
|
||||
p.profile-thin-title Mike Barnes
|
||||
p.profile-thin-subtitle Realtor, blogger
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
include ../includes/_group-social-buttons
|
||||
a.button.button-sm.button-accent-outline.button-winona(href='#') View full profile
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
include ../components/_ui-career-classic
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Single Job'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// A Few Words About Us
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between.align-items-center.align-items-xl-start
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h3 Residential Broker
|
||||
// Bootstrap tabs
|
||||
#tabs-1.tabs-custom.tabs-horizontal.tabs-line
|
||||
// Nav tabs
|
||||
ul.nav.nav-tabs
|
||||
li.nav-item(role='presentation'): a.nav-link.active(href='#tabs-1-1' data-toggle='tab') Description
|
||||
li.nav-item(role='presentation'): a.nav-link(href='#tabs-1-2' data-toggle='tab') Demands
|
||||
li.nav-item(role='presentation'): a.nav-link(href='#tabs-1-3' data-toggle='tab') Conditions
|
||||
|
||||
// Tab panes
|
||||
.tab-content
|
||||
div#tabs-1-1.tab-pane.fade.show.active
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
|
||||
div#tabs-1-2.tab-pane.fade
|
||||
ul.list-marked
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
|
||||
div#tabs-1-3.tab-pane.fade
|
||||
ul.list-marked
|
||||
li Lorem ipsum dolor sit amet, consectetur
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod dolore magna aliqua.
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt magna aliqua.
|
||||
|
||||
a.button.button-primary.button-winona(href='#') Send Your CV
|
||||
|
||||
.col-md-10.col-lg-6
|
||||
+jpg('single-job-1-570x400', 'img-responsive')
|
||||
|
||||
// Current Job Positions
|
||||
section.section.section-lg.bg-gray-100.text-center
|
||||
.container
|
||||
h3 Current Job Positions
|
||||
.row.row-45
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Real Estate Agent',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Property Manager',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
|
||||
.col-md-6.col-lg-4
|
||||
+career-classic({
|
||||
title: 'Leasing Consultant',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
})
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
|
||||
a.button.button-lg.button-primary.button-winona(href='careers.html') Join Us
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,119 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'properties'
|
||||
- var pageName = 'Single property'
|
||||
|
||||
block page
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Overview
|
||||
section.section.section-sm.bg-gray-100
|
||||
.container
|
||||
// Owl Carousel
|
||||
.owl-carousel.owl-carousel-centered-pagination(
|
||||
data-items='1'
|
||||
data-sm-items='2'
|
||||
data-md-items='3'
|
||||
data-lg-items='4'
|
||||
data-dots='true'
|
||||
data-stage-padding='0'
|
||||
data-loop='false'
|
||||
data-margin='30'
|
||||
data-mouse-drag='false')
|
||||
.item
|
||||
h4 Price
|
||||
p.text-primary: span.price-property $1300/mon
|
||||
|
||||
.item
|
||||
h4 Features
|
||||
p: span(style='max-width: 240px;') Single-family house with 2 bedrooms, 2 A/C units, 3 toilets, 2 bathrooms, 1 garage, microwave, dishwasher, water boiler, fireplace, and heating.
|
||||
|
||||
.item
|
||||
h4 Description
|
||||
p: span(style='max-width: 240px;') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.item
|
||||
h4 Address
|
||||
p 1808 Bolingbroke Pl, Fort Worth, TX 76140
|
||||
|
||||
// About This Project
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between
|
||||
.col-md-10.col-lg-7.col-xl-7
|
||||
+jpg('grid-blog-7-670x384')
|
||||
.col-md-10.col-lg-5.col-xl-4
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInDown Schedule a Tour
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.schedule-form(data-form-output='form-output-global', data-form-type='contact', method='post', action='bat/rd-mailform.php')
|
||||
.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
input#contact-first-name.form-input(type='text' name='name' data-constraints='@Required' placeholder='Name')
|
||||
|
||||
.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
input#contact-last-name.form-input(type='text' name='name' data-constraints="@Numeric @Required" placeholder='Phone')
|
||||
|
||||
.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
input#contact-email.form-input(type='email' name='email' data-constraints='@Email @Required' placeholder='E-mail')
|
||||
|
||||
button.button.button-primary.button-winona.wow.slideInRight.button-block(type='submit') Send request
|
||||
|
||||
|
||||
|
||||
section.section.swiper-container.swiper-slider.swiper-slider-tiny.text-center.centered-pagination(
|
||||
data-loop='true'
|
||||
data-slide-effect='fade'
|
||||
data-autoplay='false'
|
||||
data-simulate-touch='true')
|
||||
.swiper-wrapper.primary-overlay
|
||||
.swiper-slide(data-slide-bg='images/single-project-slide-1-1920x760.jpg'): .swiper-slide-caption: .container
|
||||
.swiper-slide(data-slide-bg='images/single-project-slide-2-1920x760.jpg'): .swiper-slide-caption: .container
|
||||
.swiper-slide(data-slide-bg='images/single-project-slide-3-1920x760.jpg'): .swiper-slide-caption: .container
|
||||
.swiper-pagination-outer.container: .swiper-pagination.swiper-pagination-modern.swiper-pagination-marked(data-index-bullet='true')
|
||||
|
||||
section.section.section-md.text-center
|
||||
.container
|
||||
h3.text-uppercase.font-weight-bold.wow-outer: span.wow.slideInDown Featured Properties
|
||||
.row.row-50.offset-top-2
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-1-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 5619 Walnut Hill Ln, Dallas, TX 75229
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') $1500/mon
|
||||
li 30 Sq. Ft.
|
||||
li 3 Bedrooms
|
||||
p A comfortable residential property located in a quiet and cozy area.
|
||||
|
||||
.col-md-6.wow-outer
|
||||
// Post Modern
|
||||
article.post-modern.wow.slideInLeft
|
||||
a.post-modern-media(href=links.post): +jpg('grid-blog-3-571x353')
|
||||
h4.post-modern-title: a(href=links.post).post-modern-title 924 Bel Air Rd, Los Angeles, CA 90077
|
||||
ul.post-modern-meta
|
||||
li: a.button-winona(href='#') 1800/mon
|
||||
li 50 Sq. Ft.
|
||||
li 4 Bedrooms
|
||||
p Located in 5 mins from downtown, this property is great for anyone.
|
||||
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,133 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Small Features'
|
||||
|
||||
block page
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Counters
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3 Counters
|
||||
p: span.text-width-1 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
.row.row-50
|
||||
.col-6.col-md-3
|
||||
// Counter Minimal
|
||||
article.counter-minimal
|
||||
.counter-minimal-icon.fl-bigmug-line-circular220
|
||||
.counter-minimal-main: .counter 12
|
||||
h5.counter-minimal-title National Partners
|
||||
|
||||
.col-6.col-md-3
|
||||
// Counter Minimal
|
||||
article.counter-minimal
|
||||
.counter-minimal-icon.fl-bigmug-line-graphical8
|
||||
.counter-minimal-main: .counter 238
|
||||
h5.counter-minimal-title Years of Experience
|
||||
|
||||
.col-6.col-md-3
|
||||
// Counter Minimal
|
||||
article.counter-minimal
|
||||
.counter-minimal-icon.fl-bigmug-line-favourites5
|
||||
.counter-minimal-main: .counter 8
|
||||
h5.counter-minimal-title Qualified Brokers
|
||||
|
||||
.col-6.col-md-3
|
||||
// Counter Minimal
|
||||
article.counter-minimal
|
||||
.counter-minimal-icon.fl-bigmug-line-user144
|
||||
.counter-minimal-main: .counter 54
|
||||
h5.counter-minimal-title Qualified Employees
|
||||
|
||||
|
||||
// Small Features
|
||||
include ../sections/_section-small-features
|
||||
|
||||
// Light 4 Column Layout
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3 Light 4 Column Layout
|
||||
p: span.text-width-1 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
.row.row-50.row-xxl-70.offset-top-2
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-flag53
|
||||
h4.box-light-title Real Estate Advisory
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-equalization3
|
||||
h4.box-light-title Transactions
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-video163
|
||||
h4.box-light-title Property Investment
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-file69
|
||||
h4.box-light-title Valuation Services
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-share27
|
||||
h4.box-light-title Client Consulting
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-store10
|
||||
h4.box-light-title Property Appraisal
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.box-light-title.fl-bigmug-line-square160
|
||||
h4.box-light-title Market Analysis
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-sm-6.col-md-4.col-lg-3
|
||||
// Box Light
|
||||
article.box-light
|
||||
.box-light-icon.fl-bigmug-line-megaphone11
|
||||
h4.box-light-title Property Sales
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
// Stroke Icons 3 Column Layout
|
||||
section.section.section-lg.bg-gray-100.text-center
|
||||
.container
|
||||
h3 Stroke Icons 3 Column Layout
|
||||
include ../includes/_row-stroke-icons
|
||||
|
||||
// Contact Info
|
||||
include ../sections/_section-contact-info
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Tables'
|
||||
|
||||
block page
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
include ../sections/_section-job-positions
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
extends ../_skeleton
|
||||
|
||||
//- Includes
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Tabs'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Tabs
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row
|
||||
.col-sm-10.col-md-9.col-lg-6.col-xl-5
|
||||
h6 Standard tabs
|
||||
// Bootstrap tabs
|
||||
#tabs-1.tabs-custom.tabs-horizontal.tabs-line
|
||||
// Nav tabs
|
||||
ul.nav.nav-tabs
|
||||
li.nav-item(role='presentation'): a.nav-link.active(href='#tabs-1-1' data-toggle='tab') Description
|
||||
li.nav-item(role='presentation'): a.nav-link(href='#tabs-1-2' data-toggle='tab') Demands
|
||||
li.nav-item(role='presentation'): a.nav-link(href='#tabs-1-3' data-toggle='tab') Conditions
|
||||
|
||||
// Tab panes
|
||||
.tab-content
|
||||
div#tabs-1-1.tab-pane.fade.show.active
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
|
||||
div#tabs-1-2.tab-pane.fade
|
||||
ul.list-marked
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
|
||||
div#tabs-1-3.tab-pane.fade
|
||||
ul.list-marked
|
||||
li Lorem ipsum dolor sit amet, consectetur
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,40 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'about us'
|
||||
- var pageName = 'Testimonials'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Testimonials
|
||||
section.section.section-lg.bg-gray-100.section-first.text-center
|
||||
.container
|
||||
h3 Testimonials
|
||||
include ../includes/_slick-widget-testimonials
|
||||
|
||||
include ../sections/_section-testimonials-3-cols
|
||||
include ../sections/_section-testimonials-and-video
|
||||
|
||||
|
||||
// 2 Column Layout
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3 2 Column Layout
|
||||
include ../includes/_owl-testimonials-2-cols
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
+139
@@ -0,0 +1,139 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Typography'
|
||||
|
||||
block page
|
||||
// Page Header
|
||||
include ../sections/_header-corporate
|
||||
|
||||
+breadcrumbs({
|
||||
category: activeCategory,
|
||||
path: [pageName]
|
||||
})
|
||||
|
||||
// Base typography
|
||||
section.section.section-sm.section-first
|
||||
.container
|
||||
.row.row-50
|
||||
.col-xl-8
|
||||
ul.list-xl
|
||||
li
|
||||
h1 H1 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
li
|
||||
h2 H2 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
li
|
||||
h3 H3 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
li
|
||||
h4 H4 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
li
|
||||
h5 H5 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
li
|
||||
h6 H6 Heading
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
// Blockquote
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row.row-50
|
||||
.col-lg-10.col-xl-8
|
||||
h6 Blockquote
|
||||
// Quote Light
|
||||
blockquote.quote-light
|
||||
+quote-mark.quote-light-mark
|
||||
.quote-light-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
// HTML Text Elements
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row
|
||||
.col-lg-10.col-xl-8
|
||||
h6 HTML Text Elements
|
||||
p.text-block
|
||||
a(href='#') Text Link
|
||||
a(href='#').link-hover Hover link
|
||||
span.font-weight-bold Bold text
|
||||
mark This is a highlighted text
|
||||
span.tooltip-custom(data-toggle='tooltip' data-placement='top' title='Tooltips text') Tooltips
|
||||
span Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
|
||||
span Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
|
||||
span.text-strike Strikethrough text
|
||||
span.text-underline Underlined text
|
||||
|
||||
// Unordered List
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row.row-50
|
||||
.col-lg-10.col-xl-8
|
||||
h6 Unordered List
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
ul.list-marked
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore
|
||||
|
||||
// Ordered List
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row.row-50
|
||||
.col-lg-10.col-xl-8
|
||||
h6 Ordered List
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
ol.list-ordered
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
li Lorem ipsum dolor
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
// Centered image
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row
|
||||
.col-lg-10.col-xl-8
|
||||
h6 Centered image
|
||||
figure.figure-light
|
||||
+jpg('typography-1-770x456', 'img-centered')
|
||||
figcaption: p Lorem ipsum
|
||||
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
// Left aligned image
|
||||
section.section.section-sm
|
||||
.container: .row: .col-lg-10.col-xl-8
|
||||
h6 Left aligned image
|
||||
.row.row-30
|
||||
.col-md-6: +jpg('typography-2-770x456')
|
||||
.col-md-6: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
|
||||
|
||||
// Right aligned image
|
||||
section.section.section-sm.section-last
|
||||
.container: .row: .col-lg-10.col-xl-8
|
||||
h6 Right aligned image
|
||||
.row.row-30.flex-md-row-reverse
|
||||
.col-md-6: +jpg('typography-3-770x456')
|
||||
.col-md-6: p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
|
||||
// Page Footer
|
||||
include ../sections/_footer-advanced
|
||||
+footer-advanced({
|
||||
about: 'inHouse is the largest full-service real estate and property management company. We offer expertise in the marketing and sale of a wide range of properties, including residential real estate, farms and lifestyle blocks, as well as commercial and industrial properties that we hope may interest you.',
|
||||
posts: [
|
||||
'Real Estate Guide: 7 Important Tips for Buying a Home',
|
||||
'Single-Family Homes as a Housing Option for Young Families'
|
||||
]
|
||||
})
|
||||
@@ -0,0 +1,32 @@
|
||||
extends ../_skeleton
|
||||
|
||||
block variables
|
||||
- var activeCategory = 'pages'
|
||||
- var pageName = 'Under Construction'
|
||||
|
||||
block page
|
||||
// Page content
|
||||
section.section.section-single.bg-gray-800.primary-overlay(style='background-image: url(images/bg-image-4.jpg);')
|
||||
.section-single-inner
|
||||
.section-single-dummy
|
||||
.section-single-main: .container
|
||||
.row.row-30.justify-content-center.justify-content-sm-start
|
||||
.col-sm-10.col-md-9.col-lg-7.col-xl-6
|
||||
h6.title-decorated.title-decorated-lg We're getting ready to launch soon
|
||||
p We are terribly sorry, but our website is currently unavailable and is closed for maintenance. If you would like to be instantly notified about resumption of the website operation, leave us your e-mail address, and we will inform you when our website will be available again.
|
||||
.rd-mailform-wrap
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.form-inline(data-form-output="form-output-global", data-form-type='subscribe', method='post', action='bat/rd-mailform.php')
|
||||
.form-wrap
|
||||
input.form-input(id="subscribe-form-1-email" type="email" name="email" data-constraints="@Email @Required")
|
||||
label.form-label(for="subscribe-form-1-email") Your e-mail
|
||||
.form-button: button.button.button-primary.button-winona(type="submit") Subscribe
|
||||
|
||||
|
||||
.footer-minimal.section-single-footer
|
||||
.container
|
||||
.footer-minimal-inner
|
||||
a.brand(href='index.html')
|
||||
+png(logo.inverse.trueSize)(srcset='images/' + logo.inverse.retina + '.png 2x')
|
||||
+rights
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
mixin footer-advanced(obj)
|
||||
footer.section.footer-advanced.bg-gray-700
|
||||
.footer-advanced-main
|
||||
.container
|
||||
.row.row-50
|
||||
.col-lg-4
|
||||
h5.font-weight-bold.text-uppercase.text-white About Us
|
||||
p.footer-advanced-text=obj.about
|
||||
|
||||
.col-sm-7.col-md-5.col-lg-4
|
||||
h5.font-weight-bold.text-uppercase.text-white Recent Blog Posts
|
||||
// Post Inline
|
||||
article.post-inline
|
||||
p.post-inline-title: a(href=links.post)=obj.posts[0]
|
||||
ul.post-inline-meta
|
||||
li by Mike Barnes
|
||||
li: a(href=links.post) 2 days ago
|
||||
|
||||
// Post Inline
|
||||
article.post-inline
|
||||
p.post-inline-title: a(href=links.post)=obj.posts[1]
|
||||
ul.post-inline-meta
|
||||
li by Mike Barnes
|
||||
li: a(href=links.post) 2 days ago
|
||||
|
||||
.col-sm-5.col-md-7.col-lg-4
|
||||
h5.font-weight-bold.text-uppercase.text-white Gallery
|
||||
.row.row-x-10(data-lightgallery='group')
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-1.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-1-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-2.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-2-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-3.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-3-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-4.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-4-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-5.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-5-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-6.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-6-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-7.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-7-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
.col-3.col-sm-4.col-md-3
|
||||
a.thumbnail-minimal(href='images/gallery-original-8.jpg' data-lightgallery='item')
|
||||
img.thumbnail-minimal-image(src='images/footer-gallery-8-85x85.jpg' alt='' )
|
||||
.thumbnail-minimal-caption
|
||||
|
||||
.footer-advanced-aside
|
||||
.container
|
||||
.footer-advanced-layout
|
||||
div: ul.list-nav
|
||||
li: a(href='index.html') Home
|
||||
li: a(href='about-us.html') About
|
||||
li: a(href='properties.html') Properties
|
||||
li: a(href='grid-blog.html') Blog
|
||||
li: a(href='contacts.html') Contacts
|
||||
|
||||
div: ul.foter-social-links.list-inline.list-inline-md
|
||||
li: a.icon.icon-sm.link-default.mdi.mdi-facebook(href='#')
|
||||
li: a.icon.icon-sm.link-default.mdi.mdi-twitter(href='#')
|
||||
li: a.icon.icon-sm.link-default.mdi.mdi-instagram(href='#')
|
||||
li: a.icon.icon-sm.link-default.mdi.mdi-google(href='#')
|
||||
li: a.icon.icon-sm.link-default.mdi.mdi-linkedin(href='#')
|
||||
|
||||
.container: hr
|
||||
|
||||
.footer-advanced-aside
|
||||
.container
|
||||
.footer-advanced-layout
|
||||
a.brand(href='index.html')
|
||||
+png(logo.light.trueSize)(srcset='images/' + logo.light.retina + '.png 2x')
|
||||
+rights
|
||||
@@ -0,0 +1,68 @@
|
||||
- navbarCounter++
|
||||
|
||||
header.section.page-header
|
||||
// RD Navbar
|
||||
.rd-navbar-wrap
|
||||
nav.rd-navbar.rd-navbar-corporate(
|
||||
data-layout= 'rd-navbar-fixed'
|
||||
|
||||
data-sm-layout= 'rd-navbar-fixed'
|
||||
|
||||
data-md-layout= 'rd-navbar-fixed'
|
||||
data-md-device-layout= 'rd-navbar-fixed'
|
||||
|
||||
data-lg-layout= 'rd-navbar-static'
|
||||
data-lg-device-layout= 'rd-navbar-static'
|
||||
data-lg-stick-up= 'true'
|
||||
data-lg-stick-up-offset= '118px'
|
||||
|
||||
data-xl-layout= 'rd-navbar-static'
|
||||
data-xl-device-layout= 'rd-navbar-static'
|
||||
data-xl-stick-up= 'true'
|
||||
data-xl-stick-up-offset= '118px'
|
||||
|
||||
data-xxl-layout= 'rd-navbar-static'
|
||||
data-xxl-device-layout= 'rd-navbar-static'
|
||||
data-xxl-stick-up-offset= '118px'
|
||||
data-xxl-stick-up= 'true'
|
||||
)
|
||||
.rd-navbar-aside-outer
|
||||
.rd-navbar-aside
|
||||
// RD Navbar Panel
|
||||
.rd-navbar-panel
|
||||
// RD Navbar Toggle
|
||||
button.rd-navbar-toggle(data-rd-navbar-toggle='#rd-navbar-nav-wrap-' + navbarCounter): span
|
||||
|
||||
// RD Navbar Brand
|
||||
a.rd-navbar-brand(href='index.html')
|
||||
+png(logo.default.trueSize)(srcset='images/' + logo.default.retina + '.png 2x')
|
||||
|
||||
.rd-navbar-collapse
|
||||
button.rd-navbar-collapse-toggle.rd-navbar-fixed-element-1(data-rd-navbar-toggle='#rd-navbar-collapse-content-' + navbarCounter): span
|
||||
.rd-navbar-collapse-content(id='rd-navbar-collapse-content-' + navbarCounter)
|
||||
article.unit.align-items-center
|
||||
.unit-left: span.icon.icon-md.icon-modern.mdi.mdi-phone
|
||||
.unit-body
|
||||
ul.list-0
|
||||
li: a.link-default(href='tel:#') 1-800-1234-567
|
||||
li: a.link-default(href='tel:#') 1-800-8763-765
|
||||
|
||||
article.unit.align-items-center
|
||||
.unit-left: span.icon.icon-md.icon-modern.mdi.mdi-map-marker
|
||||
.unit-body: a.link-default(href='tel:#') 2130 Fulton Street #[br] San Diego, CA 94117-1080
|
||||
a.button.button-gray-bordered.button-winona(href='#') Request a call
|
||||
|
||||
.rd-navbar-main-outer
|
||||
.rd-navbar-main
|
||||
.rd-navbar-nav-wrap(id='rd-navbar-nav-wrap-' + navbarCounter)
|
||||
// RD Navbar Search
|
||||
.rd-navbar-search(id='rd-navbar-search-' + navbarCounter)
|
||||
button.rd-navbar-search-toggle(data-rd-navbar-toggle='#rd-navbar-search-' + navbarCounter): span
|
||||
form.rd-search(action='search-results.html' data-search-live='rd-search-results-live-' + navbarCounter, method='GET')
|
||||
.form-wrap
|
||||
label.form-label(for='rd-navbar-search-form-input-' + navbarCounter) Search...
|
||||
input.form-input(class='rd-navbar-search-form-input' id='rd-navbar-search-form-input-' + navbarCounter, type='text' name='s' autocomplete="off")
|
||||
.rd-search-results-live(id='rd-search-results-live-' + navbarCounter)
|
||||
button.rd-search-form-submit.fa-search(type='submit')
|
||||
|
||||
include ../includes/_navigation
|
||||
@@ -0,0 +1,14 @@
|
||||
// Overview
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between
|
||||
.col-md-10.col-lg-6
|
||||
h3 Overview
|
||||
h4.offset-top-3 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
.group.group-middle
|
||||
a.button.button-primary.button-winona(href='#our-history' data-waypoint-to='#our-history') View our History
|
||||
a.button.button-primary-outline.button-winona(href='careers.html') Join our Team
|
||||
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
+png('large-features-1-470x334', 'img-responsive')
|
||||
@@ -0,0 +1,12 @@
|
||||
section.section.section-lg.bg-gray-100
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h3.wow-outer: span.wow.slideInDown A Few Words About Us
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.05s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.1s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInDown(data-wow-delay='.1s' href='about-us.html') Learn more
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
+jpg('large-features-2-570x368', 'img-responsive').wow.slideInRight
|
||||
@@ -0,0 +1,12 @@
|
||||
section.section.section-sm
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between.flex-lg-row-reverse
|
||||
.col-md-10.col-lg-6.col-xl-5
|
||||
h3.wow-outer: span.wow.slideInDown A Few Words About Us
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.05s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.1s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInDown(data-wow-delay='.1s' href='about-us.html') Learn more
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
+jpg('large-features-3-570x368', 'img-responsive').wow.slideInLeft
|
||||
@@ -0,0 +1,41 @@
|
||||
include ../components/_ui-progress-bar-linear
|
||||
|
||||
section.section.bg-gray-100
|
||||
.range.justify-content-xl-between
|
||||
.cell-lg-6.cell-xl-5.align-self-center.container
|
||||
.row
|
||||
.col-md-10.cell-inner: .section-lg.inset-right-2
|
||||
h3.wow-outer: span.wow.slideInDown A Few Words About Us
|
||||
p.wow.fadeIn Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Dedication',
|
||||
valueTo: '90'
|
||||
}).wow.slideInDown(data-wow-delay='.05s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Knowledge',
|
||||
valueTo: '65'
|
||||
}).wow.slideInDown(data-wow-delay='.1s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Professionalism',
|
||||
valueTo: '100'
|
||||
}).wow.slideInDown(data-wow-delay='.15s')
|
||||
|
||||
.progress-linear-outer.wow-outer
|
||||
+progress-bar-linear({
|
||||
title: 'Expertise',
|
||||
valueTo: '75'
|
||||
}).wow.slideInDown(data-wow-delay='.2s')
|
||||
|
||||
.wow-outer.button-outer
|
||||
a.button.button-primary.button-winona.wow.slideInUp(href='about-us.html') Learn more
|
||||
|
||||
.cell-lg-6.height-fill
|
||||
.figure-card
|
||||
.figure-card-sizer
|
||||
+jpg('large-features-4-1214x792')
|
||||
@@ -0,0 +1,12 @@
|
||||
section.section.section-lg
|
||||
.container
|
||||
.row.row-50.justify-content-center.justify-content-lg-between.flex-lg-row-reverse
|
||||
.col-lg-6.col-xl-5: .inset-right-3
|
||||
h3.wow-outer: span.wow.slideInDown A Few Words About Us
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.05s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
p.wow-outer: span.wow.slideInDown(data-wow-delay='.1s') Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInDown(data-wow-delay='.1s' href='about-us.html') Learn more
|
||||
|
||||
.col-lg-6
|
||||
.d3-chart-wrap.wow.fadeIn: #line-chart.d3-chart
|
||||
@@ -0,0 +1,37 @@
|
||||
include ../components/_ui-career-classic
|
||||
|
||||
section.section.section-lg.bg-gray-100.text-center
|
||||
.container
|
||||
h3.wow-outer: span.wow.slideInDown Careers
|
||||
.row.row-50
|
||||
.col-md-6.col-lg-4.wow-outer
|
||||
+career-classic({
|
||||
title: 'Real Estate Agent',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
}).wow.slideInRight
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4.wow-outer
|
||||
+career-classic({
|
||||
title: 'Property Manager',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
}).wow.slideInRight(data-wow-delay='.05s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
|
||||
.col-md-6.col-lg-4.wow-outer
|
||||
+career-classic({
|
||||
title: 'Leasing Consultant',
|
||||
list: [
|
||||
{iconClass: 'mdi mdi-calendar-clock', text: 'Full Time'},
|
||||
{iconClass: 'mdi mdi-map-marker', text: 'San Diego'}
|
||||
]
|
||||
}).wow.slideInRight(data-wow-delay='.1s')
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary.button-winona.wow.slideInUp(href='careers.html') Join Us
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
section.section.bg-gray-100
|
||||
.range.justify-content-xl-between
|
||||
.cell-xl-6.align-self-center.container
|
||||
.row
|
||||
.col-lg-9.cell-inner: .section-lg
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInDown Contact Us
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform(data-form-output='form-output-global', data-form-type='contact', method='post', action='bat/rd-mailform.php')
|
||||
.row.row-10
|
||||
.col-md-6.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
label.form-label-outside(for='contact-first-name') First Name
|
||||
input#contact-first-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
label.form-label-outside(for='contact-last-name') Last Name
|
||||
input#contact-last-name.form-input(type='text' name='name' data-constraints='@Required')
|
||||
|
||||
.col-md-6.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
label.form-label-outside(for='contact-email') E-mail
|
||||
input#contact-email.form-input(type='email' name='email' data-constraints='@Email @Required')
|
||||
|
||||
.col-md-6.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
label.form-label-outside(for='contact-phone') Phone
|
||||
input#contact-phone.form-input(type='text' name='phone' data-constraints='@PhoneNumber')
|
||||
|
||||
.col-12.wow-outer
|
||||
.form-wrap.wow.fadeSlideInUp
|
||||
label.form-label-outside(for='contact-message') Your Message
|
||||
textarea#contact-message.form-input(name='message' data-constraints='@Required')
|
||||
|
||||
|
||||
.group.group-middle
|
||||
.wow-outer
|
||||
button.button.button-primary.button-winona.wow.slideInRight(type='submit') Send Message
|
||||
p or use
|
||||
.wow-outer
|
||||
a.button.button-primary-outline.button-icon.button-icon-left.button-winona.wow.slideInLeft(href='#')
|
||||
span.icon.text-primary.mdi.mdi-facebook-messenger
|
||||
| Messenger
|
||||
|
||||
.cell-xl-5.height-fill.wow.fadeIn
|
||||
section.section
|
||||
.google-map-container( data-center='9870 St Vincent Place, Glasgow, DC 45 Fr 45.', data-styles='[{"featureType":"water","elementType":"geometry","stylers":[{"color":"#e9e9e9"},{"lightness":17}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ffffff"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#ffffff"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":16}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":21}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"color":"#dedede"},{"lightness":21}]},{"elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#ffffff"},{"lightness":16}]},{"elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#333333"},{"lightness":40}]},{"elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#f2f2f2"},{"lightness":19}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#fefefe"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#fefefe"},{"lightness":17},{"weight":1.2}]}]' )
|
||||
.google-map
|
||||
ul.google-map-markers
|
||||
li( data-location='9870 St Vincent Place, Glasgow, DC 45 Fr 45.', data-description='9870 St Vincent Place, Glasgow', data-icon='images/gmap_marker.png', data-icon-active='images/gmap_marker.png' )
|
||||
@@ -0,0 +1,16 @@
|
||||
section.section.section-sm
|
||||
.container
|
||||
.layout-bordered
|
||||
.layout-bordered-item.wow-outer: .layout-bordered-item-inner.wow.slideInUp
|
||||
.icon.icon-lg.mdi.mdi-phone.text-primary
|
||||
ul.list-0
|
||||
li: a.link-default(href='tel:#') 1-800-1234-678
|
||||
li: a.link-default(href='tel:#') 1-800-9876-098
|
||||
|
||||
.layout-bordered-item.wow-outer: .layout-bordered-item-inner.wow.slideInUp
|
||||
.icon.icon-lg.mdi.mdi-email.text-primary
|
||||
a.link-default(href='mailto:#') info@demolink.org
|
||||
|
||||
.layout-bordered-item.wow-outer: .layout-bordered-item-inner.wow.slideInUp
|
||||
.icon.icon-lg.mdi.mdi-map-marker.text-primary
|
||||
a.link-default(href='#') 2130 Fulton Street San Diego, CA 94117-1080 USA
|
||||
@@ -0,0 +1,73 @@
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3.wow-outer: span.wow.slideInUp Latest Job Positions
|
||||
p.wow-outer: span.text-width-1.wow.slideInDown Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam.
|
||||
.table-responsive.wow.fadeIn
|
||||
table.table.table-hover.table-job-positions
|
||||
thead
|
||||
tr
|
||||
th
|
||||
th Date
|
||||
th Company
|
||||
th Job Vacancy
|
||||
th City
|
||||
th Salary
|
||||
th Employment
|
||||
|
||||
tbody
|
||||
tr
|
||||
td
|
||||
td: time(datetime='2018') Feb 27, 2018
|
||||
td: +png('logo-john-brad-72x48')
|
||||
td.position Residential Broker
|
||||
td New York
|
||||
td $6000
|
||||
td Full Time
|
||||
|
||||
tr
|
||||
td: span.icon.icon-md.text-danger.mdi.mdi-fire
|
||||
td: time(datetime='2018') Jan 27, 2018
|
||||
td: +png('logo-the-oldbrand-62x48')
|
||||
td.position Residential Appraiser
|
||||
td San Francisco
|
||||
td $5500
|
||||
td Full Time
|
||||
|
||||
tr
|
||||
td
|
||||
td: time(datetime='2018') Apr 27, 2018
|
||||
td: +png('logo-havana-cabana-72x48')
|
||||
td.position Real Estate Agent
|
||||
td Chicago
|
||||
td $6000
|
||||
td Full Time
|
||||
|
||||
tr
|
||||
td
|
||||
td: time(datetime='2018') Nov 27, 2018
|
||||
td: +png('logo-john-brad-72x48')
|
||||
td.position Property Manager
|
||||
td New York
|
||||
td $4000
|
||||
td Full Time
|
||||
|
||||
tr
|
||||
td
|
||||
td: time(datetime='2018') Dec 27, 2018
|
||||
td: +png('logo-the-oldbrand-62x48')
|
||||
td.position Leasing Consultant
|
||||
td Boston
|
||||
td $5500
|
||||
td Full Time
|
||||
|
||||
tr
|
||||
td
|
||||
td: time(datetime='2018') Jan 27, 2018
|
||||
td: +png('logo-john-brad-72x48')
|
||||
td.position Commercial Broker
|
||||
td San Diego
|
||||
td $6000
|
||||
td Full Time
|
||||
|
||||
.wow-outer.button-outer
|
||||
a.button.button-lg.button-primary-outline.button-winona.wow.slideInUp(href='careers.html') View all Job Positions
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
section.section.section-lg.bg-gray-100
|
||||
.container
|
||||
.row.justify-content-center
|
||||
.col-sm-10.col-md-8.col-lg-7.col-xl-6
|
||||
h3.wow-outer.text-center: span.wow.slideInUp Newsletter
|
||||
p.wow-outer: span.wow.slideInLeft Keep up with our always upcoming news and updates. Enter your e-mail and subscribe to our newsletter.
|
||||
|
||||
// RD Mailform
|
||||
form.rd-form.rd-mailform.form-inline.wow.fadeIn(data-wow-delay='.2s' data-form-output="form-output-global", data-form-type='subscribe', method='post', action='bat/rd-mailform.php')
|
||||
.form-wrap
|
||||
input.form-input(id="subscribe-form-1-email" type="email" name="email" data-constraints="@Email @Required")
|
||||
label.form-label(for="subscribe-form-1-email") Your e-mail
|
||||
.form-button
|
||||
button.button.button-primary.button-winona(type="submit") Subscribe
|
||||
@@ -0,0 +1,35 @@
|
||||
section.section.section-lg.bg-gray-700#our-history
|
||||
.container
|
||||
// Timeline Classic
|
||||
article.timeline-classic
|
||||
.timeline-classic-item
|
||||
.timeline-classic-item-aside: +jpg('timeline-1-390x250', 'timeline-classic-item-image')
|
||||
.timeline-classic-item-divider
|
||||
.timeline-classic-item-main
|
||||
p.timeline-classic-item-title December 1995
|
||||
p.thumbnail-classic-item-subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
|
||||
.timeline-classic-item
|
||||
.timeline-classic-item-aside: +jpg('timeline-2-390x250', 'timeline-classic-item-image')
|
||||
.timeline-classic-item-divider
|
||||
.timeline-classic-item-main
|
||||
p.timeline-classic-item-title March 2004
|
||||
p.thumbnail-classic-item-subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
|
||||
.timeline-classic-item
|
||||
.timeline-classic-item-aside: +jpg('timeline-3-390x250', 'timeline-classic-item-image')
|
||||
.timeline-classic-item-divider
|
||||
.timeline-classic-item-main
|
||||
p.timeline-classic-item-title April 2010
|
||||
p.thumbnail-classic-item-subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
|
||||
.timeline-classic-item
|
||||
.timeline-classic-item-aside: +jpg('timeline-4-390x250', 'timeline-classic-item-image')
|
||||
.timeline-classic-item-divider
|
||||
.timeline-classic-item-main
|
||||
p.timeline-classic-item-title May 2018
|
||||
p.thumbnail-classic-item-subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse.
|
||||
@@ -0,0 +1,55 @@
|
||||
section.section.section-lg.text-center.bg-gray-100
|
||||
.container
|
||||
h3.text-uppercase.wow-outer: span.wow.slideInUp Our Team
|
||||
.row.row-50.row-xxl-70.justify-content-center.justify-content-lg-start
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-1-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Nathalie Porter
|
||||
p.profile-creative-position Founder, Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Ms. Porter founded our company in 1989 with a vision to help guests and residents of the USA to easily find and buy or rent real estate in all 50 states.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-2-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') John Thompson
|
||||
p.profile-creative-position Sales Associate
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p John has been in sales and marketing for the past 15 years. He has excellent knowledge about the local market both residential and commercial.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft
|
||||
figure.profile-creative-figure: +jpg('team-3-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Brian Payne
|
||||
p.profile-creative-position Realtor
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Brian is not only a Licensed Realtor but also holds the Title Producers and Mortgage Licenses, which makes him a very knowledgeable real estate expert.
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
// Profile Creative
|
||||
article.profile-creative.wow.slideInLeft(data-wow-delay='.2s')
|
||||
figure.profile-creative-figure: +jpg('team-4-270x273', 'profile-creative-image')
|
||||
.profile-creative-main
|
||||
h5.profile-creative-title: a(href='#') Marie Fernandez
|
||||
p.profile-creative-position Broker
|
||||
.profile-creative-contacts
|
||||
.object-inline
|
||||
span.icon.icon-md.mdi.mdi-phone
|
||||
a(href='tel:#') 1-800-1324-567
|
||||
p Marie’s goal is to provide clients with the highest level of marketing expertise and customer service to help them reach their uppermost real estate goals.
|
||||
@@ -0,0 +1,19 @@
|
||||
section.section.section-sm.text-center
|
||||
.container
|
||||
// Owl Carousel
|
||||
.owl-carousel.owl-carousel-1(
|
||||
data-items='2'
|
||||
data-sm-items='3'
|
||||
data-md-items='4'
|
||||
data-lg-items='5'
|
||||
data-dots='true'
|
||||
data-nav='false'
|
||||
data-stage-padding='0'
|
||||
data-loop='true'
|
||||
data-margin='30'
|
||||
data-mouse-drag="false")
|
||||
.item.wow-outer: .wow.slideInLeft: a.link-image(href='#'): +png('logo-john-brad-135x87')
|
||||
.item.wow-outer: .wow.slideInLeft(data-wow-delay='.05s'): a.link-image(href='#'): +png('logo-the-oldbrand-134x104')
|
||||
.item.wow-outer: .wow.slideInLeft(data-wow-delay='.1s'): a.link-image(href='#'): +png('logo-havana-cabana-132x87')
|
||||
.item.wow-outer: .wow.slideInLeft(data-wow-delay='.15s'): a.link-image(href='#'): +png('logo-brownie-143x85')
|
||||
.item.wow-outer: .wow.slideInLeft(data-wow-delay='.2s'): a.link-image(href='#'): +png('logo-hillplan-111x85')
|
||||
@@ -0,0 +1,40 @@
|
||||
include ../components/_ui-progress-bar-linear
|
||||
|
||||
section.section.section-md
|
||||
.container
|
||||
// Profile Modern
|
||||
article.profile-modern
|
||||
.profile-modern-figure
|
||||
+jpg('team-1-336x336', 'profile-modern-image')
|
||||
a.profile-modern-button(href='#')
|
||||
span.icon.mdi.mdi-facebook-messenger
|
||||
span.icon.mdi.mdi-facebook-messenger
|
||||
|
||||
.profile-modern-main
|
||||
.profile-modern-header
|
||||
.profile-modern-header-item
|
||||
h3 Nathan Porter
|
||||
p Founder, CEO
|
||||
|
||||
.profile-modern-item
|
||||
include ../includes/_group-social-buttons
|
||||
|
||||
.row.row-30
|
||||
.col-lg-6
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac.
|
||||
|
||||
.col-lg-6
|
||||
+progress-bar-linear({
|
||||
title: 'Dedication',
|
||||
valueTo: '90'
|
||||
})
|
||||
|
||||
+progress-bar-linear({
|
||||
title: 'Knowledge',
|
||||
valueTo: '65'
|
||||
})
|
||||
|
||||
+progress-bar-linear({
|
||||
title: 'Expertise',
|
||||
valueTo: '100'
|
||||
})
|
||||
@@ -0,0 +1,26 @@
|
||||
section.section.section-lg.bg-gray-100
|
||||
.container
|
||||
.row.row-30
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Minimal
|
||||
article.box-minimal
|
||||
.box-chloe__icon.linearicons-user.wow.fadeIn
|
||||
.box-minimal-main.wow-outer
|
||||
h4.box-minimal-title.wow.slideInDown Qualified Employees
|
||||
p.wow.fadeInUpSmall Our team consists of more than 20 qualified and experienced real estate brokers and property managers ready to help you.
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Minimal
|
||||
article.box-minimal
|
||||
.box-chloe__icon.linearicons-bubble-text.wow.fadeIn(data-wow-delay='.1s')
|
||||
.box-minimal-main.wow-outer
|
||||
h4.box-minimal-title.wow.slideInDown(data-wow-delay='.1s') Free Consultations
|
||||
p.wow.fadeInUpSmall(data-wow-delay='.1s') Our acquaintance with a client always begins with a free consultation to find out what kind of property they are looking for.
|
||||
|
||||
.col-sm-6.col-lg-4.wow-outer
|
||||
// Box Minimal
|
||||
article.box-minimal
|
||||
.box-chloe__icon.linearicons-star.wow.fadeIn(data-wow-delay='.2s')
|
||||
.box-minimal-main.wow-outer
|
||||
h4.box-minimal-title.wow.slideInDown(data-wow-delay='.2s') 100% Guaranteed
|
||||
p.wow.fadeInUpSmall(data-wow-delay='.2s') All the results that you get from our realtors are 100% guaranteed to offer you the best choice of properties throughout the USA.
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
// 3 Column Layout
|
||||
section.section.section-lg.text-center
|
||||
.container
|
||||
h3.wow-outer: span.wow.slideInDown 3 Column Layout
|
||||
// Owl Carousel
|
||||
.owl-carousel.wow.fadeIn(
|
||||
data-items='1'
|
||||
data-md-items='2'
|
||||
data-lg-items='3'
|
||||
data-dots='true'
|
||||
data-nav='false'
|
||||
data-loop='false'
|
||||
data-margin='30'
|
||||
data-stage-padding='0'
|
||||
data-mouse-drag="false")
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-3-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Albert Webb
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-1-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Kelly McMillan
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-2-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Harold Barnett
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
|
||||
blockquote.quote-classic
|
||||
.quote-classic-meta
|
||||
.quote-classic-avatar: +jpg('testimonials-person-5-96x96')
|
||||
.quote-classic-info
|
||||
cite.quote-classic-cite Bill Warner
|
||||
p.quote-classic-caption Regular Client
|
||||
.quote-classic-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
section.section.section-lg.bg-gray-100
|
||||
.container
|
||||
h3.wow-outer.text-center: span.wow.slideInUp Testimonials & Video
|
||||
.row.row-50.justify-content-center.justify-content-lg-between
|
||||
.col-md-10.col-lg-5.wow-outer
|
||||
.owl-carousel.wow.slideInLeft(
|
||||
data-items='1'
|
||||
data-dots='true'
|
||||
data-nav='false'
|
||||
data-loop='true'
|
||||
data-margin='30'
|
||||
data-stage-padding='0'
|
||||
data-mouse-drag="false")
|
||||
blockquote.quote-modern
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-3-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Albert Webb
|
||||
p.quote-modern-caption Regular Client
|
||||
|
||||
blockquote.quote-modern
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-1-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Kelly McMillan
|
||||
p.quote-modern-caption Regular Client
|
||||
|
||||
blockquote.quote-modern
|
||||
+quote-mark.quote-modern-mark
|
||||
.quote-modern-text
|
||||
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Donec et odio pellentesque diam. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae.
|
||||
.quote-modern-meta
|
||||
.quote-modern-avatar: +jpg('testimonials-person-2-96x96')
|
||||
.quote-modern-info
|
||||
cite.quote-modern-cite Harold Barnett
|
||||
p.quote-modern-caption Regular Client
|
||||
|
||||
.col-md-10.col-lg-6.wow-outer
|
||||
.thumbnail-video-1.bg-gray-700.wow.slideInLeft
|
||||
.embed-responsive.embed-responsive-16by9: iframe(width='570' height='320' src='//www.youtube.com/embed/QZzbm-FrkGk' allowfullscreen='')
|
||||
.thumbnail-video__overlay.video-overlay(style='background-image: url(images/video-preview-1-570x320.jpg)')
|
||||
.button-video
|
||||
h5 Lawrence Alvarado
|
||||
@@ -0,0 +1,8 @@
|
||||
section.section.section-xs.bg-primary-darker.text-center
|
||||
.container
|
||||
.row.justify-content-center
|
||||
.col-sm-10.col-md-12
|
||||
.box-cta-thin
|
||||
h4.wow-outer: span.wow.slideInRight Learn the Cost of your #[span.font-weight-bold Next Property] Right Now!
|
||||
.wow-outer.button-outer
|
||||
a.button.button-primary.button-winona.wow.slideInLeft(href='#') View all pricing
|
||||
Reference in New Issue
Block a user