-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (117 loc) · 4.92 KB
/
index.html
File metadata and controls
125 lines (117 loc) · 4.92 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
118
119
120
121
122
123
124
125
---
layout: default
title: "Salesforce.com Foundation Technology and Products"
base_url: "./"
---
<section class="project-cloud">
<h2 class="section-head" id="projects">Projects</h2>
<div class="clouds">
<a class="clouds-up" href="#"></a>
{% for project in site.data.projects %}
<div class="cloud cloud-{% cycle '1', '2', '3', '4' %} cloud-pos-{{ forloop.index }}">
<a class="cloud-name" href="{% if project.url %}{{ project.url }}{% else %}{{ project.repo }}{% endif %}">
{{ project.name }}
</a>
<div class="cloud-info">
<p>
{{ project.description }}
</p>
<p>
{% if project.url %} <a href="{{ project.url }}" class="btn btn-primary">Project Site</a>{% endif %}
{% if project.repo %} <a href="{{ project.repo }}" class="btn btn-success">View on Github</a>{% endif %}
</p>
</div>
</div>
{% endfor %}
</div>
</section>
<section class="section section-blog">
<h2 class="section-head" id="blog">Blog</h2>
<div class="container">
<div class="blog">
<article class="post">
</article>
<div class="blog-list">
<h4 class="blog-list-title">Recent Posts</h4>
<ul class="posts shown">
{% for post in paginator.posts %}
{% assign member = site.data.members[post.author] %}
<li>
{% if member %}
<img class="avatar" src="{{ member.avatar }}?s=140">
{% endif %}
<div class="posts-body">
<h3><a class="posts-link" href="{{ post.url }}">{{ post.title }}</a></h3>
<span class="post-date">{{ post.date | date: '%B %d, %Y' }}</span>
{% if post.author %}<span class="author">by {{ post.author }}</span>{% endif %}
<p>{{ post.excerpt }} <a class="posts-more" href="{{ post.url }}">more ...</a></p>
</div>
</li>
{% endfor %}
</ul>
{% if paginator.total_pages > 1 %}
<ul class="pager" id="#pager">
{% if paginator.previous_page %}
<li>
{% if paginator.page == 2 %}
<a href="1">← Newer</a></li>
{% else %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer</a></li>
{% endif %}
{% else %}
<li class="disabled"><a>Newer</a></li>
{% endif %}
{% if paginator.next_page %}
<li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older →</a></li>
{% else %}
<li class="disabled"><a>Older →</a></li>
{% endif %}
</ul>
{% endif %}
</div>
</div>
</div>
</section>
<section class="section section-team">
<h2 class="section-head" id="team">Team</h2>
<div class="team-members">
{% for item in site.data.members %}
{% assign name = item[0] %}
{% assign member = item[1] %}
<div class="member">
{% if member.avatar %}
<img src="{{ member.avatar }}?s=460">
{% else %}
<div class="placeholder"></div>
{% endif %}
<div class="caption">
<h3 class="member-name">{{ name }}</h3>
{% if member.title %}
<p class="member-title">{{ member.title }}</p>
{% endif %}
<div class="member-social">
{% if member.github %}
<a href="https://www.github.com/{{ member.github }}" title="{{ member.github }} on github" data-toggle="tooltip" data-placement="top"><i class="fa fa-github"></i></a>
{% endif %}
{% if member.twitter %}
<a href="https://twitter.com/{{ member.twitter }}" title="{{ member.twitter }} on twitter" data-toggle="tooltip" data-placement="top"><i class="fa fa-twitter"></i></a>
{% endif %}
{% if member.url %}
<a href="{{ member.url }}" title="{{ name }}'s website" data-toggle="tooltip" data-placement="top"><i class="fa fa-globe"></i></a>
{% endif %}
</div>
{% if member.bio %}
<p>{{ member.bio }}</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</section>
<section class="section">
<h2 class="section-head" id="about">About</h2>
<div class="container">
<p class="lead">The Salesforce.com Foundation is based on a simple idea: Leverage salesforce.com’s people, technology and resources to build collective knowledge and enable action to improve communities throughout the world. We call our integrated philanthropic approach the 1:1:1 model.</p>
<p class="lead">The Technology and Products team delivers products that drive the Foundation's constituent-centered vision and empower our customers to become connected nonprofits and campuses.</p>
</div>
</section>