-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (112 loc) · 5.3 KB
/
index.html
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
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ACClub Landing Page</title>
<link rel="stylesheet" href="css/flexslider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="icon/acclub_favicon.png">
</head>
<body>
<div class = "header-container">
<div class = "logo-container">
<a href="index.html"><img class = "acclub-logo" alt = "Applied Computing Club Logo" src = "icon/ACClub_600.png"></a>
</div>
<div class = "nav-container">
<a href="about.html">About</a>
<a href="open-source.html">Open-Source Projects</a>
<a href="salesforce.html">Salesforce</a>
<a href="contact.html">Contact</a>
</div>
</div>
<!--<div class = "transparent-container">-->
<div class = "social-media-container">
<a href = "https://discord.gg/nzxeKeD" target = "_blank"><img class = "social-media-icon" alt = "social media icon" src = "icon/discord_icon.png"></a>
<a href = "https://www.instagram.com/iupuiacclub/" target = "_blank"><img class = "social-media-icon" alt = "social media icon" src = "icon/insta_icon.png"></a>
<a href = "https://www.facebook.com/IUPUIACClub/?epa=SEARCH_BOX"target = "_blank"><img class = "social-media-icon" alt = "social media icon" src = "icon/facebook_icon.png"></a>
</div>
<div class = "social-message-container">
<h6>Join our community!</h6>
</div>
<!--</div>-->
<section class="slider">
<div class="flexslider">
<ul class="slides">
<li>
<img src="img/IMG1.jpeg" />
</li>
<li>
<img src="img/IMG2.jpg" />
</li>
<li>
<img src="img/IMG3.jpg" />
</li>
</ul>
</div>
</section>
<div class = "main-content-container home-container">
<h1>ACClub 2019</h1>
<h2>@IUPUI</h2>
<div class = "main-content">
<h3>-------- Upcoming events --------</h3>
<div class = "event event1">
<h4>Salesforce Trailhead Event</h4>
<h5>April 1st, 2019 5:30 @ the Idea Garden</h5>
<p>
This upcoming week we will be diving into an interactive lesson using the Salesforce Trailhead platform.
Trailhead is a learning platform to help developers and other professionals to learn Salesforce technology.
Joining us this week will be a great opportunity to help you become acquainted with Salesforce, just in time for next weeks event!
</p>
</div>
<div class = "event event2">
<h4>Salesforce Pathfinder Event</h4>
<h5>April 8th, 2019 5:00 @ the Gibson Building (433 N Capitol Ave, Indianapolis, IN 46204)</h5>
<p>
Are you interested in careers in the Salesforce ecosystem? Come join the IUPUI Salesforce Student Group and other Indianapolis Salesforce Community Groups on April 8th for more information on the Salesforce Pathfinder program, professional networking, and a career panel! Food and drinks will be provided!
<br>
RSVP <a href = "https://trailblazercommunitygroups.com/events/details/salesforce-student-group-indiana-university-purdue-university-indianapolis-presents-indy-city-wide-community-group-meeting/">here.</a>
</p>
</div>
<div class = "event event3">
<h4>Fun Javascript and Codepen Day</h4>
<h5>April 15th, 2019 5:30 @ the Idea Garden</h5>
<p>
As we approach finals week, Geoff will be doing another presentation on the basics of javascript, and how it can
be used to make your website stand out with animation and effects as well as logic.
</p>
</div>
</div>
</div>
<div class = "footer-container">
<div class = "nothing-container"></div>
<div class = "insert-email-container">
<span><a href = "https://theden.iupui.edu/organization/acc">Join our mailing list</a></span>
</div>
<div class = "fine-print-info-container">
<span>420 University Blvd.</span> <br>
<span>Indianapolis, IN 46202</span> <br>
<span>© ACClub</span>
</div>
</div>
<!-- Javascript files -->
<script type="text/javascript" src = "js/script.js"></script>
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- FlexSlider -->
<script defer src="js/jquery.flexslider-min.js"></script>
<script type="text/javascript">
$(function(){
SyntaxHighlighter.all();
});
$(window).load(function(){
$('.flexslider').flexslider({
animation: "slide",
start: function(slider){
$('body').removeClass('loading');
}
});
});
</script>
</body>
</html>