Skip to content

Commit

Permalink
Joe's static site
Browse files Browse the repository at this point in the history
  • Loading branch information
cpeak committed Apr 22, 2015
1 parent e0f1c89 commit 418ec2d
Show file tree
Hide file tree
Showing 47 changed files with 6,722 additions and 0 deletions.
97 changes: 97 additions & 0 deletions munn-static/1985/10/26/Test-Post/index.html
@@ -0,0 +1,97 @@
<!DOCTYPE HTML>

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Your Name" />
<title>R&amp;J | Test Post</title>
<link href="css/vendor/normalise.css" rel="stylesheet" type="text/css" media="all">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<link href="css/layout.css" rel="stylesheet" type="text/css" media="all">
<link href="css/jma.css" rel="stylesheet" type="text/css" media="all">
<link href="css/header-nav.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/animation.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/responsive-nav.css" rel="stylesheet" type="text/css" media="all">
<script src="js/responsive-nav.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->

</head>
<body>
<header>
<div class="primary-navigation">
<div class="content">
<a class="brand" href="index.html"><img src='images/rjs.png' /></a>
<nav class='nav-collapse'>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project-list.html">Project List</a></li>
<li><a href="references.html">References</a></li>
<li><a href="audits.html">Audit Notices</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>

<div class="subnav">
<div class="content">
<p>CAGE: 66DB3</p>
<p>DUNS: 965230225</p>
<p>NAICS: 561210, 541211, 541219, 541330, 541611</p>
</div>
</div>

<div class="notice">
<div class="content">
<p>Eligible for Sole Source Contracts</p>
</div>
</div>

</header>

<div class="animated fadeIn">
<div class="content">
<div class='content-intro'>
<div class='sdv-notice'>
<p>Service Disabled Veteran Owned Small Business (SDVOSB) Certified by the U.S. Department of Veterans Affairs and Illinois Department of Central Management Services</p>
</div>

<div class="sdv"></div>
<div class="marines"></div>

<div class='cca'>
<h2>Construction Cost Accountants</h2>
<h3>Construction Auditing &bull; Off Site Stored Material Auditing &bull; Construction Litigation</h3>
</div>

<div class="intro-paragraph">
<p>Construction projects are among the largest and most complex financial expenditures undertaken. Our responsibility is to the owner! Audits identify actual and potential overpayments, overcharges, failures to recoup reimbursable expenses, etc. Our team of experts affords you the financial review of your construction project that your architect, engineer, accounting staff or project managers do not.</p>
</div>
</div>
</div>

<div class="content">
<div id="post">
<h1></h1>
<p>This is a test post writen in markdown. To learn more about markdown check out the <a href="http://daringfireball.net/projects/markdown/">documentation</a> on <a href="http://daringfireball.net/">Daring Fireball</a>.</p>

</div>
</div>

<footer>
<p>&copy; R&amp;J Construction Auditing Inc. 2015</p>
</footer>
</div>
</div>

<script>
var navigation = responsiveNav(".nav-collapse");
</script>

</body>
</html>
48 changes: 48 additions & 0 deletions munn-static/README.md
@@ -0,0 +1,48 @@
## Jekyll Base ##
This is a base that will ge you started with jekyll create by Daniel McGraw (@danielmcgraw).

### Usage ###
Check out my [post series](http://danielmcgraw.com/2011/04/14/The-Ultimate-Guide-To-Getting-Started-With-Jekyll-Part-1/) on how to use Jekyll Base to create your own Jekyll powered blog.

### Structure ###
<pre>
.
|-- .gitignore
|-- README
|-- _config.yml
|-- _layouts
| |-- layout.html
| `-- post.html
|-- _posts
| `-- 1985-10-26-Test-Post.md
`-- index.html
</pre>

Lets take a look at what each of these do.

### .gitignore ###
This file is not manditory for a proper Jekyll install, but is useful if you are like me and use a mac (ignore the DS_Store) or emacs (ignore the autosave files). If you have any other files or folders that need ignoring toss them in here.

### README ###
This file is not manditory for a proper Jekyll install, but is recomended by GitHub for all repositories. Toss a simple description of your site and its make up in here if you would like.

### _config.yml ###
This is where you will be putting your Jekyll configuration options. If this file is omitted Jekyll will use its defualts to build your site. You can find the configuration options and default configuration [here](https://github.com/mojombo/jekyll/wiki/configuration).

### _layouts ###
This folder is where you will be putting all your layout templates. I have added layout.html and post.html so you can get an idea of how they are strutured and used.

#### layout.html ####
This is the base template for our site. There are no naming conventions, but if you choose to change this file's name make sure you update all the layout references in your file's YAML Front Matter blocks.

#### post.html ####
This is the bast template for each of our posts. Again there are no naming conventions, but make sure you update the required files YAML Front Matter blocks if you do change its name. To learn more about the use of YAML Front Matter check out [this page](https://github.com/mojombo/jekyll/wiki/yaml-front-matter).

### _posts ###
This is your posts folder. You will be putting your blog posts in here. Notice the naming convention that is used. You will want to name your files with the the publish date preceeding the posts title all seperated by dashes (Year-Month-Day-Title-Of-The-Post.md). The post date that you see is pulled straight from this filename so make sure you lable your files right.

#### 1985-10-26-Test-Post.md ####
This is a simple blog post. Notice that we are using markdown. To learn more about markdown check out the [markdown syntax documentation](http://daringfireball.net/projects/markdown/syntax). Also notice that there is YAML Front Matter in this file specifying the layout it will use and the title of the post. Layout is one of a couple predefined global variables. You can also specify custom variables in the YAML Front Matter. To learn more about the use of YAML Front Matter check out [this page](https://github.com/mojombo/jekyll/wiki/yaml-front-matter).

### index.html ###
This is used to render your sites index. It is essntially a post loop wrapped in your base layout.
98 changes: 98 additions & 0 deletions munn-static/about.html
@@ -0,0 +1,98 @@
<!DOCTYPE HTML>

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Your Name" />
<title>R&amp;J | About</title>
<link href="css/vendor/normalise.css" rel="stylesheet" type="text/css" media="all">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<link href="css/layout.css" rel="stylesheet" type="text/css" media="all">
<link href="css/jma.css" rel="stylesheet" type="text/css" media="all">
<link href="css/header-nav.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/animation.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/responsive-nav.css" rel="stylesheet" type="text/css" media="all">
<script src="js/responsive-nav.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->

</head>
<body>
<header>
<div class="primary-navigation">
<div class="content">
<a class="brand" href="index.html"><img src='images/rjs.png' /></a>
<nav class='nav-collapse'>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project-list.html">Project List</a></li>
<li><a href="references.html">References</a></li>
<li><a href="audits.html">Audit Notices</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>

<div class="subnav">
<div class="content">
<p>CAGE: 66DB3</p>
<p>DUNS: 965230225</p>
<p>NAICS: 561210, 541211, 541219, 541330, 541611</p>
</div>
</div>

<div class="notice">
<div class="content">
<p>Eligible for Sole Source Contracts</p>
</div>
</div>

</header>

<div class="animated fadeIn">
<div class="content">
<div class='content-intro'>
<div class='sdv-notice'>
<p>Service Disabled Veteran Owned Small Business (SDVOSB) Certified by the U.S. Department of Veterans Affairs and Illinois Department of Central Management Services</p>
</div>

<div class="sdv"></div>
<div class="marines"></div>

<div class='cca'>
<h2>Construction Cost Accountants</h2>
<h3>Construction Auditing &bull; Off Site Stored Material Auditing &bull; Construction Litigation</h3>
</div>

<div class="intro-paragraph">
<p>Construction projects are among the largest and most complex financial expenditures undertaken. Our responsibility is to the owner! Audits identify actual and potential overpayments, overcharges, failures to recoup reimbursable expenses, etc. Our team of experts affords you the financial review of your construction project that your architect, engineer, accounting staff or project managers do not.</p>
</div>
</div>
</div>

<div class="content">
<h2 class='title'>About</h2>
<div class='block'>
<p>Richard Weber, President &amp; Joseph R. Munn, Vice President represent over 50 years of commercial lending administration and construction auditing experience. R &amp; J Construction Auditing Inc. was formed in 2010 and is Certified by the Department of Veterans Affairs as a SERVICE DISABLED VETERAN OWNED SMALL BUSISNESS (SDVOSB) and Certified by the State of Illinois Central Management Office.</p>
<p>R&amp;J Construction Auditing Inc. is the successor to JMA Associates, Inc. JMA was established to provide construction cost accounting services. This company is a successor to Jseph R Munn &amp; Associates. Mr. Munn was previously employed with Morse Diesel International and Metropolitan Stuctures, Inc., as Manager of Project Cost Accounting. When Mr. Munn left Morse Diesel International and Metropolitan Structures, he saw the need for construction cost accounting services for Owners, Construction Managers, General Contractors, Subcontractors and Suppliers.</p>
<p>Changes in the construction industry have made concepts such as partnering and alliances more important in assuring the viability of construction and construction related business. There are no longer numerous other companies available to complete the project if the original contractor fails to perform. Accordinly, there has never been a time where the services provided by R&amp;J Construction Auditing Inc. have been as important as they are today.</p>
</div>
</div>

<footer>
<p>&copy; R&amp;J Construction Auditing Inc. 2015</p>
</footer>
</div>
</div>

<script>
var navigation = responsiveNav(".nav-collapse");
</script>

</body>
</html>
141 changes: 141 additions & 0 deletions munn-static/audits.html
@@ -0,0 +1,141 @@
<!DOCTYPE HTML>

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Your Name" />
<title>R&amp;J | About</title>
<link href="css/vendor/normalise.css" rel="stylesheet" type="text/css" media="all">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<link href="css/layout.css" rel="stylesheet" type="text/css" media="all">
<link href="css/jma.css" rel="stylesheet" type="text/css" media="all">
<link href="css/header-nav.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/animation.css" rel="stylesheet" type="text/css" media="all">
<link href="css/vendor/responsive-nav.css" rel="stylesheet" type="text/css" media="all">
<script src="js/responsive-nav.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->

</head>
<body>
<header>
<div class="primary-navigation">
<div class="content">
<a class="brand" href="index.html"><img src='images/rjs.png' /></a>
<nav class='nav-collapse'>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project-list.html">Project List</a></li>
<li><a href="references.html">References</a></li>
<li><a href="audits.html">Audit Notices</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>

<div class="subnav">
<div class="content">
<p>CAGE: 66DB3</p>
<p>DUNS: 965230225</p>
<p>NAICS: 561210, 541211, 541219, 541330, 541611</p>
</div>
</div>

<div class="notice">
<div class="content">
<p>Eligible for Sole Source Contracts</p>
</div>
</div>

</header>

<div class="animated fadeIn">
<div class="content">
<div class='content-intro'>
<div class='sdv-notice'>
<p>Service Disabled Veteran Owned Small Business (SDVOSB) Certified by the U.S. Department of Veterans Affairs and Illinois Department of Central Management Services</p>
</div>

<div class="sdv"></div>
<div class="marines"></div>

<div class='cca'>
<h2>Construction Cost Accountants</h2>
<h3>Construction Auditing &bull; Off Site Stored Material Auditing &bull; Construction Litigation</h3>
</div>

<div class="intro-paragraph">
<p>Construction projects are among the largest and most complex financial expenditures undertaken. Our responsibility is to the owner! Audits identify actual and potential overpayments, overcharges, failures to recoup reimbursable expenses, etc. Our team of experts affords you the financial review of your construction project that your architect, engineer, accounting staff or project managers do not.</p>
</div>
</div>
</div>

<div class="content" id="audits-page">
<h2 class='title centered'>Audit Notice For Construction Costs</h2>
<h3 class='centered'>Insurance is one of the most overbilled items on the General Contractor Monthly Application for Payment</h3>
<br />

<div>
<div class='sub-panel'>
<h3>Questions</h3>
<p>Why is the Federal Government charged less for insurance and the public charged more on their projects?<br /><br />
What are the industry averages for insurance cost on construction projects?<br /><br />
How is insurance calculated as a part of construction costs?</p>
<h3>Caution</h3>
<p class='centered'>Do not approve any insurance cost if the cost is NOT AUDITABLE in the construction contract or Owner Change Order. Problems could develop if you approve a NON AUDIT provision for Construction Cost.</p>
</div>

<div>
<h3>Know the type of Insurance and what to ask for</h3>
<ul class='bullet insurances'>
<li>Contractors Controlled Insurance Program (CCIP)</li>
<li>Liability Insurance &amp; Workmen's Compensation</li>
<li>Owners Controlled Insurance Program (OCIP)</li>
<li>Professional/Pollution Insurance</li>
</ul>
<h3 class='centered'>Please call for a consultation</h3>
</div>
</div>

<div>
<div>
<ul class='bullet insurances'>
<li>Insurance</li>
<li>CCIP (Contractors Controlled Insurance Program)</li>
<li>Lump Sum General Conditions</li>
<li>Payments by Owner to General Contractor/Construction Manager</li>
<li>No Audit Provision Contract or Owner Change Order</li>
</ul>
</div>

<div>
<h3 class='centered'>He who controls the paper controls the cost</h3>
<br />
<div class='sub-panel type2 centered'>
<p>Does your Construction Contract have these Provisions?</p>
<p>YOU need US on YOUR SIDE<br />
Over 30 Years Experience<br />
R &amp; J Construction Auditing Inc.<br />
Audits Construction Costs from the general contractor/construction manager.<br />
</div>
</div>
</div>
</div>

<footer>
<p>&copy; R&amp;J Construction Auditing Inc. 2015</p>
</footer>
</div>
</div>

<script>
var navigation = responsiveNav(".nav-collapse");
</script>

</body>
</html>

0 comments on commit 418ec2d

Please sign in to comment.