Skip to content

Commit 4672c96

Browse files
committed
Dev Profiles
1 parent 1a1dce2 commit 4672c96

Some content is hidden

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

76 files changed

+285
-70
lines changed

_includes/aside.html

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ <h2>By Language</h2>
2020
{% endfor %}
2121
</nav>
2222

23+
<div class="developers">
24+
<a href="/developers/all" class="button">Local Developers</a>
25+
</div>
26+
2327
<footer>
2428
<a class="fa fa-github" href="https://github.com/bradwestfall/webdevphoenix"></a>
2529
<a href="/about">About</a>

_includes/browse_companies.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="browse-company">
22
<i class="fa {{ page.fa }}"></i>
33
<div>
4-
<a href="{{ page.url }}" class="company">{{ page.company }}</a>
4+
<a href="{{ page.url }}" class="company">{{ page.name }}</a>
55
<span class="description">{{ page.overview }}</span>
66
</div>
77
</div>

_includes/browse_developers.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<div class="browse-developer">
2+
<a href="{{ page.link }}" class="name">{{ page.developer_name }}</a>
3+
{% if page.stack %}
4+
<span class="stack">
5+
{{ page.stack | join:', ' }}
6+
</span>
7+
{% endif %}
8+
<div class="contact">
9+
10+
{% if page.email %}
11+
<a href="#" class="email hide" data-email="{{ page.email }}"><i class="fa fa-envelope"></i><span>Show Email</span></a>
12+
{% endif %}
13+
14+
{% if page.website %}
15+
<a href="{{ page.website }}"><i class="fa fa-cloud"></i>website</a>
16+
{% endif %}
17+
18+
{% if page.twitter %}
19+
<a href="http://twitter.com/{{ page.twitter }}"><i class="fa fa-twitter"></i>{{ page.twitter }}</a>
20+
{% endif %}
21+
22+
{% if page.github %}
23+
<a href="http://github.com/{{ page.github }}"><i class="fa fa-github"></i>{{ page.github }}</a>
24+
{% endif %}
25+
26+
{% if page.linkedin %}
27+
<a href="{{ page.linkedin }}"><i class="fa fa-linkedin-square"></i>LinkedIn</a>
28+
{% endif %}
29+
30+
{% if page.co-founder-willing %}
31+
<span>Willing to be a co-founder!</span>
32+
{% endif %}
33+
34+
</div>
35+
</div>

_layouts/browse_companies.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<header class="content-header">
66
<h1>{{ page.title }}</h1>
77
<div class="actions">
8-
<a href="/add-company" class="button add-company">Add a company</a>
8+
<a href="/add-company" class="button">Add a company</a>
99
</div>
1010
</header>
1111

_layouts/browse_developers.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
5+
<header class="content-header">
6+
<h1>{{ page.title }}</h1>
7+
<div class="actions">
8+
<a href="/add-developer" class="button">Add yourself to the list</a>
9+
</div>
10+
</header>
11+
12+
13+
<div class="browse-developers">
14+
{{ content }}
15+
</div>

_layouts/company_profile.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<div class="company-profile">
66

77
<header class="content-header">
8-
<h1>{{ page.company }}</h1>
8+
<h1>{{ page.company_name }}</h1>
99
<div class="actions">
10-
{% if page.website %}
10+
{% if page.twitter %}
1111
<a class="twitter" href="http://twitter.com/{{ page.twitter }}"><i class="fa fa-twitter"></i>{{ page.twitter }}</a>
1212
{% endif %}
1313
</div>

_layouts/dev_profile.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Temp File
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.browse-developers {
2+
@include vertical-rhythm($gutter);
3+
}
4+
5+
.browse-developer {
6+
border-bottom: 1px solid $line-color;
7+
padding-bottom: 1em;
8+
9+
.name {
10+
display: inline-block;
11+
font-weight: 600;
12+
font-size: 1.3em;
13+
}
14+
15+
.stack {
16+
display: inline-block;
17+
font-weight: 600;
18+
margin-left: 0.5em;
19+
&::before { content: '('; }
20+
&::after { content: ')'; }
21+
}
22+
23+
.contact {
24+
margin-top: 0.5em;
25+
> * {
26+
margin-right: 2em
27+
}
28+
i.fa {
29+
margin-right: 0.3em;
30+
}
31+
}
32+
33+
}

_sass/layout/_aside.scss

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@ aside {
1717
}
1818
}
1919

20+
.developers {
21+
border-top: 1px solid $line-color;
22+
padding-top: $gutter;
23+
text-align: center;
24+
}
25+
2026
> footer {
2127
border-top: 1px solid $line-color;
22-
margin-top: 3em;
2328
padding-top: 0.5em;
2429
text-align: center;
2530

add-developer.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
permalink: /add-developer/
4+
---
5+
6+
<h1>Add yourself to the developer list</h1>
7+
8+
Adding a developer consists of creating a [Pull Request](https://github.com/bradwestfall/webdevphoenix/blob/master/contribute-developer.md) on our GitHub page. The site is built on GitHub Pages using the [Jekyll](http://jekyllrb.com/) static site generator. So all you have to do is create a YAML/Markdown file and submit your pull request.
9+
10+
<a href="https://github.com/bradwestfall/webdevphoenix/blob/master/contribute-developer.md" class="button">Contribute</a>

all.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
permalink: /all/
55
---
66

7-
{% for page in site.pages %}{% if page.company %}
7+
{% for page in site.pages %}{% if page.company_name %}
88
{% include browse_companies.html %}
99
{% endif %}{% endfor %}

api/1.0/all/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
{% capture companies %}
44
[
5-
{% for page in site.pages %}{% if page.company %}
5+
{% for page in site.pages %}{% if page.company_name %}
66
,{
77
"name": "{{ page.company }}",
88
"lat": "{{ page.lat }}",

api/1.0/companies/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{% capture companies %}
55
[
6-
{% for page in site.pages %}{% if page.company %}
6+
{% for page in site.pages %}{% if page.company_name %}
77
,{
88
"name": "{{ page.company }}",
99
"lat": "{{ page.lat }}",

asp.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
language: ASP.NET
66
---
77

8-
{% for page in site.pages %}{% if page.company %}
8+
{% for page in site.pages %}{% if page.company_name %}
99
{% if page.stack contains 'ASP.NET' %}
1010
{% include browse_companies.html %}
1111
{% endif %}

c-plus-plus.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
language: C++
66
---
77

8-
{% for page in site.pages %}{% if page.company %}
8+
{% for page in site.pages %}{% if page.company_name %}
99
{% if page.stack contains 'C++' %}
1010
{% include browse_companies.html %}
1111
{% endif %}

c-sharp.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
language: C#
66
---
77

8-
{% for page in site.pages %}{% if page.company %}
8+
{% for page in site.pages %}{% if page.company_name %}
99
{% if page.stack contains 'C#' %}
1010
{% include browse_companies.html %}
1111
{% endif %}

central-valley.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
region: Central
66
---
77

8-
{% for page in site.pages %}{% if page.company %}
8+
{% for page in site.pages %}{% if page.company_name %}
99
{% if page.region contains 'Central' %}
1010
{% include browse_companies.html %}
1111
{% endif %}

companies.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: null
33
---
44
[
5-
{% for page in site.pages %}{% if page.company %}
5+
{% for page in site.pages %}{% if page.company_name %}
66
{
77
"name": "{{ page.company }}",
88
"lat": "{{ page.lat }}",

companies/american-express.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: American Express
3+
company_name: American Express
44
overview: American Express is the world's premier service company, and the largest credit card issuer by purchase volume. We're also an equal opportunity employer, made up of people from many diverse backgrounds, lifestyles and locations.
55
company_size: Large
66
stack: [Java, Spring, SQL, JavaScript, CSS, HTML]

companies/apriva.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Apriva
3+
company_name: Apriva
44
overview: Point of Sale solutions for companies of all sizes, and secure mobile communications
55
lat: 33.561083
66
lng: -111.925399

companies/axosoft.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
tag: company
33
layout: company_profile
4-
company: Axosoft
4+
company_name: Axosoft
55
lat: 33.612539
66
lng: -111.89239
77
stack: [C#, Java, Node]

companies/azpixels.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
tag: company
33
layout: company_profile
4-
company: AZPixels
4+
company_name: AZPixels
55
overview: Web Development and Consulting
66
lat: 33.448213
77
lng: -112.059274

companies/bold.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Bold
3+
company_name: Bold
44
overview: Building better payments systems using Digital Currencies.
55
lat: 33.4242347
66
lng: -111.9387911

companies/computerist-solutions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
tag: company
33
layout: company_profile
4-
company: ComputeristSolutions
4+
company_name: ComputeristSolutions
55
overview: Web & Mobile Development and Consulting
66
lat: 33.4154808
77
lng: -111.8355988

companies/connexta.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: "company_profile"
3-
company: "Connexta"
3+
company_name: "Connexta"
44
company_size: "Small"
55
stack: [Java, JavaScript]
66
region: West

companies/convrrt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: "company_profile"
3-
company: "Convrrt"
3+
company_name: "Convrrt"
44
lat: 33.30778
55
lng: -111.756293
66
company_size: "Small"

companies/flipswitch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
tag: company
33
layout: company_profile
4-
company: FlipSwitch
4+
company_name: FlipSwitch
55
overview: Online Education
66
company_size: Medium
77
stack: [.NET]

companies/food-services-of-america.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Food Services of America
3+
company_name: Food Services of America
44
overview: One of the nation's largest broadline foodservice distributors
55
company_size: Large
66
stack: [HTML, CSS, JavaScript, C#, Web Services, T-SQL]

companies/go-daddy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: "company_profile"
3-
company: "GoDaddy"
3+
company_name: "GoDaddy"
44
company_size: "Large"
55
stack: [Node, JavaScript, PHP, Python, C#]
66
region: [East, North]

companies/iced-dev.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Iced Development, LLC.
3+
company_name: Iced Development, LLC.
44
overview: Software Consulting and Training
55
company_size: Small
66
dev_team_size: 6

companies/infinity-dental-web.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Infinity Dental Web
3+
company_name: Infinity Dental Web
44
overview: Web Development and Internet Marketing
55
company_size: Small
66
dev_team_size: 5

companies/infusionsoft.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Infusionsoft
3+
company_name: Infusionsoft
44
overview: Small business sales and marketing software
55
lat: 33.2864855
66
lng: -111.8874264

companies/integrallis.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Integrallis
3+
company_name: Integrallis
44
overview: We are a Web/Mobile design & development company in Scottsdale, Arizona
55
company_size: Small
66
dev_team_size: 8

companies/intel-corporation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Intel Corporation
3+
company_name: Intel Corporation
44
overview: The world's largest semiconductor chip maker, based on revenue.
55
company_size: Large
66
stack: [HTML, JavaScript, C#, MVC, Web API 2, SQL]

companies/invexi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Invexi
3+
company_name: Invexi
44
overview: Web Development and Consulting
55
company_size: Small
66
dev_team_size: 5

companies/ipro-tech.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Ipro Tech
3+
company_name: Ipro Tech
44
overview: Ipro Tech is a global leader in the development of enterprise software solutions within the e-discovery industry.
55
company_size: Medium
66
dev_team_size: 30

companies/lane-terralever.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: Lane Terralever
3+
company_name: Lane Terralever
44
overview: LaneTerralever is one of the region's largest full-service marketing and advertising agencies, with over 120 employees and offices in Phoenix and Denver
55
company_size: Medium
66
region: East

companies/mcmurrytmg.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: company_profile
3-
company: McMurry/TMG
3+
company_name: McMurry/TMG
44
overview: Content Marketing Agency
55
lat: 33.517106
66
lng: -112.059833

0 commit comments

Comments
 (0)