-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 2.94 KB
/
Copy pathindex.html
File metadata and controls
79 lines (67 loc) · 2.94 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
---
layout: default
---
<div class="jumbotron">
<h1>{{ site.data.config.title | escape }}</h1>
<p>Ride Dallas.</p>
</div>
<img alt="" class="center-block img-responsive img-rounded" src="/static/images/fixed-touring.jpg">
<hr>
<div class="row">
<div class="col-md-6">
<h2>About</h2>
<p class="lead">
Fixed Touring established in 2012 is a not for profit bicycle advocacy
organization. Fixed Touring provides unique opportunities for Dallas/Fort
Worth cyclists to increase bicycle skills, maintenance and route knowledge
across the state while decreasing the amount of gears.
</p>
<p>
The goal of Fixed Touring is to promote and showcase reliable, self
sufficient, and logical means to physical activity... 1 gear & 1 bike at a
time. Comprised of five officers and two members from a variety of backgrounds
and professions, Fixed Touring is organized just as diverse as the areas we
seek to serve. Fixed Touring seeks to increase awareness of cycling and active
lifestyle events, promote community-wide physical fitness, and benefit
partnering companies/organizations. Fixed Touring’s strategy is to influence
participation in regular physical activity by associating it with sustainable
transportation, promoting cycling awareness, reaching physical activity
requirements, spending time with friends, having fun, and seeing the country
on two wheels. Fixed Touring will target riders/non-riders alike and a focus
will be placed on developing cycling communities, enhancing cycling awareness,
developing active transportation infrastructure and promoting community
cycling events. Fixed Touring seeks to improve citizen’s attitudes,
self-efficacy and perception through a person-oriented and community-driven
program, successfully implementing bicycle touring and transportation in
conjunction with the recently passed Dallas Bike Plan, local business funding
and community organization support.
</p>
</div>
<div class="col-md-6">
<div class="list-group">
<h2>News</h2>
{% for post in site.posts limit: 3 %}
<a href="{{ post.url | escape }}" class="list-group-item">
<h2>
{{ post.title | escape }}
<small>
{% if post.categories contains 'bikes' %}
<i class="fa fa-bicycle"></i>
{% elsif post.categories contains 'rides' %}
<i class="fa fa-map-marker"></i>
{% endif %}
</small>
</h2>
<p>
{% if post.categories contains 'rides' %}
<mark>
{{ post.date | date: '%Y-%m-%d' }}
</mark>
{% endif %}
{{ post.content | split: '<!---->' | last | strip_html | strip_newlines | split: ' ' | join: ' ' | truncate: 200 }}
</p>
</a>
{% endfor %}
</div>
</div>
</div>