-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
117 lines (114 loc) Β· 3.55 KB
/
about.html
File metadata and controls
117 lines (114 loc) Β· 3.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
layout: default
title: About | Leading Web Design & Development Agency in the Philippines
permalink: /about/
heading: "WE ARE WEBDEV+, AN AWARD-WINNING CREATIVE STUDIO IN THE PHILIPPINES."
description: "π We are a small, yet dedicated and experienced Web Design and Development studio based in San Mateo Isabela, Philippines. We specialized in building Clean, Unique, and Awesome Websites! β¨. We make the web more enjoyable by creating attractive websites for businesses and individuals who need an effective online presence."
expertise_title: "Expertise"
expertise_sectors:
[
"π Web Development",
"π Web Design",
"π Search Engine Optimization",
"π Branding",
]
---
<!-- start: about header section -->
<section class="site-about-header">
<div class="container">
<div class="row">
<div class="col-12">
<div class="site-about-wrapper">
<div class="site-about-company">
<h1>{{ page.heading }}</h1>
</div>
<div class="site-about-description">
<p>{{ page.description }}</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end: about header section -->
<!-- start: expertise section -->
<section class="site-expertise">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="section-title">
<h2>{{ page.expertise_title }}</h2>
</div>
</div>
<div class="col-md-6">
{% assign expertises = page.expertise_sectors %}
<ul class="site-expertise-list">
{%- for expertise in expertises -%}
<li>{{ expertise }}</li>
{%- endfor -%}
</ul>
{% assign expertises = nill %}
</div>
</div>
</div>
</section>
<!-- end: expertise section -->
{%- if site.data.clients.enable -%} {%- assign clients = site.data.clients -%}
<!-- start: clients section -->
<section class="site-client">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>{{ clients.title }}</h2>
</div>
<div class="site-client-wrapper">
{%- for logo in clients.client_logos -%}
<div class="site-client-item">
<img src="{{ logo | absolute_url }}" alt="client-logo" />
</div>
{%- endfor -%}
</div>
</div>
</div>
</div>
</section>
<!-- end: clients section -->
{%- assign clients = nill -%} {%- endif -%} {%- if site.data.team.enable -%} {%-
assign team = site.data.team -%}
<!-- start: team section -->
<section class="site-team">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>{{ team.title }}</h2>
</div>
</div>
{%- for member in team.members -%}
<div class="col-lg-6 col-md-4">
<div class="site-team-member">
<div class="site-team-member-image">
<img
src="{{ member.image | absolute_url }}"
alt="team-member-image"
/>
</div>
<div class="site-team-member-content">
<h3>{{ member.name }}</h3>
<p>{{ member.designation }}</p>
<ul class="site-team-member-social">
<li>
π
<a href="{{ member.website }}">{{ member.page }}</a>
</li>
</ul>
</div>
</div>
</div>
{%- endfor -%}
</div>
</div>
</section>
<!-- end: team section -->
{%- assign team = nill -%} {%- endif -%} {%- include call-to-action.html -%}