<!-- Featured Course -->
<div class="featured_course">

    <div class="fs-row">
        <div class="fs-cell fs-lg-10 fs-xl-8 fs-lg-justify-center">

            <div class="featured_course_inner">

                <div class="featured_course_header">
                    <h2 class="featured_course_title">
                        <span class="featured_course_title_label">Featured Course</span>
                    </h2>
                    <div class="featured_course_description">
                        <p></p>
                    </div>
                </div>

                <div class="featured_course_wrapper">
                    <div class="featured_course_item">
                        <div class="featured_course_item_header">
                            <h3 class="featured_course_item_title">Ethnography: Theory and Practice</h3>
                            <span class="featured_course_item_number">ANTH 3205</span>
                        </div>
                        <div class="featured_course_item_body">
                            <span class="featured_course_item_description">This seminar combines theoretical and critical readings with practical instruction in the field research methods used by cultural anthropologists. Students will become familiar with the techniques of participant-observation through "how to" readings and by proposing, designing and conducting field projects in the local area. Proposals for both individual and group projects will be considered.</span>
                        </div>
                        <a href="#" class="featured_course_item_link">
                            <span class="featured_course_item_link_inner">
                                <span class="featured_course_item_link_label">View all Courses in This Area of Concentration</span>
                            </span>
                        </a>
                    </div>
                </div>

            </div>

        </div>
    </div>

</div>
<!-- END: Featured Course -->
<!-- Featured Course -->
<div class="featured_course">

	<div class="fs-row">
		<div class="fs-cell fs-lg-10 fs-xl-8 fs-lg-justify-center">

			<div class="featured_course_inner">

				<div class="featured_course_header">
					<h2 class="featured_course_title">
						<span class="featured_course_title_label">{{ title|title }}</span>
					</h2>
					<div class="featured_course_description">
						<p>{{ description }}</p>
					</div>
				</div>

				<div class="featured_course_wrapper">
					{% for item in items %}
						<div class="featured_course_item">
							<div class="featured_course_item_header">
								<h3 class="featured_course_item_title">{{ item.title }}</h3>
								{% if item.course %}
									<span class="featured_course_item_number">{{ item.course }}</span>
								{% endif %}
							</div>
							<div class="featured_course_item_body">
								<span class="featured_course_item_description">{{ item.description }}</span>
							</div>
							{% if item.link %}
								<a href="{{ item.link.url }}" class="featured_course_item_link">
									<span class="featured_course_item_link_inner">
										<span class="featured_course_item_link_label">{{ item.link.label }}</span>
									</span>
								</a>
							{% endif %}
						</div>
					{% endfor %}
				</div>

			</div>

		</div>
	</div>

</div>
<!-- END: Featured Course -->

No notes defined.