瀏覽代碼

first commit

bmallred 11 年之前
當前提交
9642e17842
共有 13 個文件被更改,包括 388 次插入0 次删除
  1. 0 0
      README.md
  2. 27 0
      crossdomain.xml
  3. 二進制
      favicon.ico
  4. 43 0
      humans.txt
  5. 104 0
      index.html
  6. 3 0
      partials/about.html
  7. 7 0
      partials/company.html
  8. 11 0
      partials/contact.html
  9. 11 0
      partials/home.html
  10. 8 0
      partials/services.html
  11. 4 0
      robots.txt
  12. 25 0
      scripts/app.js
  13. 145 0
      styles/site.css

+ 0 - 0
README.md


+ 27 - 0
crossdomain.xml

@ -0,0 +1,27 @@
1
<?xml version="1.0"?>
2
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
3
<cross-domain-policy>
4
  
5
  
6
<!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
7
8
<!-- Most restrictive policy: -->
9
10
	<site-control permitted-cross-domain-policies="none"/>
11
12
	
13
	
14
<!-- Least restrictive policy: -->
15
<!--
16
	<site-control permitted-cross-domain-policies="all"/>
17
	<allow-access-from domain="*" to-ports="*" secure="false"/>
18
	<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
19
-->
20
21
<!--
22
  If you host a crossdomain.xml file with allow-access-from domain="*" 	 	
23
  and don’t understand all of the points described here, you probably 	 	
24
  have a nasty security vulnerability. ~ simon willison
25
-->
26
27
</cross-domain-policy>

二進制
favicon.ico


+ 43 - 0
humans.txt

@ -0,0 +1,43 @@
1
/* the humans responsible & colophon */
2
/* humanstxt.org */
3
4
5
/* TEAM */
6
  Owner: Bryan M. Allred
7
  Site:	http://enderspsyche.com
8
  Twitter: @bmallred
9
  Location:	Saint Petersburg, FL
10
11
/* THANKS */
12
  Names (& URL):
13
14
/* SITE */
15
  Standards: HTML5, CSS3
16
  Components: Modernizr, jQuery
17
  Software:	Sublime Text 2, git
18
19
20
21
                               -o/-
22
                               +oo//-
23
                              :ooo+//:
24
                             -ooooo///-
25
                             /oooooo//:
26
                            :ooooooo+//-
27
                           -+oooooooo///-
28
           -://////////////+oooooooooo++////////////::
29
            :+ooooooooooooooooooooooooooooooooooooo+:::-
30
              -/+ooooooooooooooooooooooooooooooo+/::////:-
31
                -:+oooooooooooooooooooooooooooo/::///////:-
32
                  --/+ooooooooooooooooooooo+::://////:-
33
                     -:+ooooooooooooooooo+:://////:--
34
                       /ooooooooooooooooo+//////:-
35
                      -ooooooooooooooooooo////-
36
                      /ooooooooo+oooooooooo//:
37
                     :ooooooo+/::/+oooooooo+//-
38
                    -oooooo/::///////+oooooo///-
39
                    /ooo+::://////:---:/+oooo//:
40
                   -o+/::///////:-      -:/+o+//-
41
                   :-:///////:-            -:/://
42
                     -////:-                 --//:
43
                       --                       -:

+ 104 - 0
index.html

@ -0,0 +1,104 @@
1
<!doctype html>
2
<html ng-app="farm">
3
	<head>
4
		<meta charset="utf-8" />
5
	    <meta name="description" content="" />
6
	    <meta name="author" content="Revolving Cow, LLC" />
7
8
    	<title>Revolving Cow</title>
9
		<link href="https://plus.google.com/114406518580005058024" rel="publisher" />
10
		<link type="text/css" href="styles/site.css" rel="stylesheet" />
11
		<!--[if lt IE 9]>
12
		<style type="">
13
			#browser
14
			{
15
				display: block;
16
				visibility: visible;
17
			}
18
		</style>
19
		<![endif]-->
20
		<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
21
	</head>
22
	<body>
23
		<!-- Warning to upgrade the browser -->
24
		<div id="browser">
25
			<h2>Dude, you are missing out on the cool stuff!</h2>
26
			<p>We recommend upgrading to the latest <a href="//ie.microsoft.com" title="Microsoft Internet Explorer">Internet Explorer</a>, <a href="//chrome.google.com" title="Google Chrome">Google Chrome</a>, or <a href="//mozilla.org/firefox" title="Firefox">Firefox</a>. If you are using IE 9 or later, make sure you turn off "Compatibility View".</p>
27
		</div>
28
		
29
		<div id="logo"><a href="#/" title="Revolving Cow"><img src="" /></a></div>
30
31
		<header id="menu">
32
			<!-- Basic navigation menu -->
33
			<nav>
34
				<a class="first" href="#/services" title="Services">Services</a>
35
				<a href="#/company" title="Company">Company</a>
36
				<a href="http://blog.revolvingcow.com" title="Blog">The Pasture</a>
37
			</nav>
38
		</header>
39
40
		<div id="container">
41
			<!-- Where the magic happens -->
42
			<div ng-view></div>
43
		</div>
44
45
		<footer>
46
			<div id="columns">
47
				<div class="col">
48
					<h4>Products</h4>
49
50
					<ul>
51
						<li><a href="http://revolvingcow.github.io/jquery-analytics" title="jQuery Analytics">jQuery Analytics</a></li>
52
					</ul>
53
				</div>
54
				<div class="col">
55
					<h4><a href="#/company" title="Company">Company</a></h4>
56
57
					<ul>
58
						<li><a href="#/company" title="Overview">Overview</a></li>
59
						<li><a href="#/about" title="About Us">About Us</a></li>
60
						<li><a href="#/services" title="Services">Services</a></li>
61
						<li><a href="http://blog.revolvingcow.com" title="Press">Press</a></li>
62
						<li><a href="#/contact" title="Contact">Contact</a></li>
63
					</ul>
64
				</div>
65
				<div class="col">
66
					<h4>Connect</h4>
67
68
					<ul>
69
						<li><a href="//plus.google.com/114406518580005058024" title="Google&#43;" rel="publisher">Google&#43;</a></li>
70
						<li><a href="//twitter.com/RevolvingCow" title="&#64;RevolvingCow">Twitter</a></li>
71
			            <li><a href="http://blog.revolvingcow.com" title="Blog">Blog</a></li>
72
			            <li><a href="mailto:info@revolvingcow.com" title="Email me">Email</a></li>
73
		        	</ul>
74
				</div>
75
			</div>
76
77
			<!-- Copyright information -->
78
			<div class="copyright">
79
				<span>Copyright &copy; 2013 Revolving Cow, LLC. All rights reserved.</span>
80
			</div>
81
		</footer>
82
83
		<!-- Scripts located down under for faster load times -->
84
        <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
85
        <script type="text/javascript" src="scripts/app.js"></script>
86
        <script>
87
			(function(i, s, o, g, r, a, m) {
88
				i['GoogleAnalyticsObject'] = r;
89
				i[r] = i[r] || function() {
90
					(i[r].q = i[r].q || []).push(arguments)
91
				},
92
				i[r].l = 1 * new Date();
93
				a = s.createElement(o),
94
				m = s.getElementsByTagName(o)[0];
95
				a.async = 1;
96
				a.src = g;
97
				m.parentNode.insertBefore(a, m)
98
			})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
99
100
			ga('create', 'UA-41795638-1', 'revolvingcow.com');
101
			ga('send', 'pageview');
102
		</script>
103
	</body>
104
</html>

+ 3 - 0
partials/about.html

@ -0,0 +1,3 @@
1
<h2>Getting to know the herd</h2>
2
3
<p>An enthusiastic bunch who enjoy exploring possibilities over some warm sake (does that make us Wagyu?). The ability to think outside the pasture has allowed us to apply creative working solutions to a variety of problems where our competitors may spend more time and effort getting the square peg in to the circle hole.</p>

+ 7 - 0
partials/company.html

@ -0,0 +1,7 @@
1
<h2>Our Mission</h2>
2
3
<p>Solving over complicated problems with simple software solutions.</p>
4
5
<h2>Origins</h2>
6
7
<p>Founded in 2013 mainly as an excuse to manage our own timelines and incorporate more "play" in to our daily routines.</p>

+ 11 - 0
partials/contact.html

@ -0,0 +1,11 @@
1
<h2>Need more cow bell?</h2>
2
3
<p>Whether it be private or public, individual or corporate, we can be reached at <a href="mailto:info@revolvingcow.com" title="info@revolvingcow.com">info at revolvingcow.com</a>. We are more than willing to discuss how to make your ideas become a tangible reality and to ease the process here are some things to think about:</p>
4
5
<ul>
6
	<li>who is the target audience?</li>
7
	<li>what delivery medium should be used?</li>
8
	<li>are there similar products or services which may be used for reference or inspiration?</li>
9
</ul>
10
11
<p>Armed with this information we can provide a quote within 24 hours detailing the amount of time and effort required, a plan of attack to deliver the product in whole or by iteration, and a overall price quote.</p>

+ 11 - 0
partials/home.html

@ -0,0 +1,11 @@
1
<!-- <img src="/images/fast-efficient-lightweight.png" alt="Fast, efficient, and lightweight" /> -->
2
<h2>Fast, efficient, and lightweight</h2>
3
4
<p>Practicing the "test first" philosophy our code is more likely to run longer and more efficiently.</p>
5
<p>With a strong belief in not over complicating a problem we strive to find the core issues and approach them with simple and sound solutions.</p>
6
7
<!-- <img src="/images/limber.png" alt="We&apos;re limber!" /> -->
8
<h2>We're limber!</h2>
9
10
<p>No matter whether your environment uses Linux, Mac, or Windows we can integrate.</p>
11
<p>Regardless of programming language or framework we can handle it.</p>

+ 8 - 0
partials/services.html

@ -0,0 +1,8 @@
1
<h2>Custom software to meet your growing needs</h2>
2
3
<p>Lets face it... your current needs may be similar to other businesses but never quite the same. When some process can be custom fitted to your individual needs many of your daily headaches go away allowing focus to be placed your customer and final product.</p>
4
5
<h2>Analyzing your data</h2>
6
7
<p>Your business may be operatingly smoothly with investments panning out, but ever wonder why? Or more importantly how can you maintain this groove or give it a boost?</p>
8
<p>This is where data analysis comes in to play. Every computing process leaves a stream of metrics in its daily routine. Most of the time this is disregarded as acceptable debris or maybe stored away in some obscure location. By tapping in to this untapped source of data your business processes can begin to gather this information. Revolving Cow can harvest these nuggets of knowledge and bring about unique insights beneficial to your business and your customers overall experience.</p>

+ 4 - 0
robots.txt

@ -0,0 +1,4 @@
1
# www.robotstxt.org/
2
# http://code.google.com/web/controlcrawlindex/
3
4
User-agent: *

+ 25 - 0
scripts/app.js

@ -0,0 +1,25 @@
1
'use strict';
2
3
angular.module("farm", [])
4
    .config(["$routeProvider", "$locationProvider", function ($routeProvider, $locationProvider) {
5
        //$locationProvider.html5Mode(false);
6
        
7
        $routeProvider.when("/", {
8
            templateUrl: "partials/home.html"
9
        })
10
        .when("/services", {
11
            templateUrl: "partials/services.html"
12
        })
13
        .when("/company", {
14
            templateUrl: "partials/company.html"
15
        })
16
        .when("/contact", {
17
            templateUrl: "partials/contact.html"
18
        })
19
        .when("/about", {
20
            templateUrl: "partials/about.html"
21
        })
22
        .otherwise({ 
23
        	redirectTo: "/" 
24
        });
25
    }]);

+ 145 - 0
styles/site.css

@ -0,0 +1,145 @@
1
@import url("http://fonts.googleapis.com/css?family=Architects+Daughter");
2
3
body
4
{
5
	margin: 0;
6
	padding: 0;
7
	color: #fff;
8
	background-color: #171814;
9
	font-family: 'Architects Daughter', cursive;
10
}
11
12
header
13
{
14
	text-align: left;
15
	margin: 3em 0 0 0;
16
	padding: 1em;
17
	background-color: #464643;
18
	border: 1px solid #666;
19
}
20
21
header nav
22
{
23
	display: inline-block;
24
	padding-left: 12em;
25
}
26
27
header nav a
28
{
29
	border-left: 1px solid #eee;
30
	padding-left: 1em;
31
	padding-right: 1em;
32
}
33
34
header nav a.first
35
{
36
	border-left: none;
37
}
38
39
footer
40
{
41
	padding: 0.5em 1em;
42
}
43
44
footer div#columns
45
{
46
	padding: 0 25%;
47
}
48
49
footer .col
50
{
51
	text-align: left;
52
	vertical-align: text-top;
53
	display: inline-block;
54
	width: 30%;
55
	padding: 0 0.65em 0 0.35em;
56
}
57
58
footer .col h4
59
{
60
	border-bottom: 1px dotted #eee;
61
}
62
63
64
footer ul,
65
footer li
66
{
67
	margin: 0;
68
	padding: 0;
69
	list-style: none;
70
}
71
72
footer .col.last
73
{
74
	border-right: none;
75
}
76
77
a,
78
a:link,
79
a:visited
80
{
81
	text-decoration: none;
82
	color: #fff;
83
}
84
85
a:hover
86
{
87
	text-decoration: none;
88
	font-weight: bolder;
89
	color: #eb6335;
90
}
91
92
#logo
93
{
94
	position: absolute;
95
	top: 1.35em;
96
	left: 5em;
97
	height: 7em;
98
	width: 7em;
99
	background-color: #000;
100
	z-index: 100;
101
}
102
103
#logo a
104
{
105
	border: none;
106
}
107
108
#logo img
109
{
110
	width: 7em;
111
	height: 7em;
112
	border: 0;
113
}
114
115
#browser
116
{
117
	display: none;
118
	visibility: hidden;
119
	padding: 1em 15%;
120
	background-color: #fae692;
121
	border-bottom: 1px solid #000;
122
}
123
124
#container
125
{
126
	margin: 0;
127
	padding: 2em;
128
	min-height: 12em;
129
	background-color: #272822;
130
	border: 1px solid #666;
131
	box-shadow: 0 5px 10px #000 inset;
132
}
133
134
.copyright 
135
{ 
136
	padding: 5em 1em 1em 1em;
137
	text-align: center;
138
	width: 100%;
139
	font-size: 9pt;
140
}
141
142
.center
143
{
144
	text-align: center;
145
}