123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- /**
- * The template for displaying all single ccess_story posts
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
- *
- * @package UIU_CSE
- */
- get_header(); ?>
- <?php while (have_posts()) : the_post(); ?>
- <main id="main" class="site-main" role="main">
- <div class="sections">
- <section id="success-single-header" class="container">
- <h5>Alumni</h5>
- <nav class="breadcrumb" aria-label="breadcrumb">
- <ul>
- <li><a href="/">Home</a></li>
- <li><a href="/alumni/">Alumni</a></li>
- </ul>
- </nav>
- <div class="success-img-title">
- <img src=" <?php the_field('profile_photo'); ?>" alt="">
- <div class="success-name">
- <h1><?php echo get_the_title(); ?></h1>
- <span class="subtext">
- <?php the_field('alumni_designation'); ?>
- </span>
- </div>
- </div>
- <hr>
- <div class="success-socials">
- <div>
- SHARE:
- <a href="#" class="social-icons"><i class="fa-brands fa-facebook-f"></i></a>
- <a href="#" class="social-icons"><i class="fa-brands fa-twitter"></i></a>
- <a href="#" class="social-icons"><i class="fa-brands fa-linkedin-in"></i></a>
- </div>
- </div>
- </section>
- <section id="success-single-body" class="container">
- <div class="success-single-text">
- <?php if (has_post_thumbnail()) : ?>
- <div class="article-cover-image">
- <img src="<?php echo get_the_post_thumbnail_url(); ?>" alt="">
- <span class="img-caption"> </span>
- </div>
- <?php endif ?>
- <div class="article">
- <?php echo the_content(); ?>
- </div>
- <hr>
- </div>
- </section>
- </div>
- </main>
- <?php endwhile; ?>
- <style>
- p {
- max-width: 100% !important;
- }
- header {
- height: 100px !important;
- }
- #success-single-header {
- padding-top: 40px !important;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- margin-bottom: 40px !important;
- }
- #success-single-header hr {
- margin: 10px 0px !important;
- width: 100%;
- }
- #success-single-header h5 {
- font-size: 30px;
- color: #2F4858;
- }
- #success-single-header .success-img-title {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- }
- #success-single-header .success-img-title img {
- height: 150px;
- width: 150px;
- -o-object-fit: cover;
- object-fit: cover;
- }
- #success-single-header .success-img-title .success-name {
- height: 150px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- padding: 10px 20px;
- }
- #success-single-header .success-img-title .success-name .subtext {
- display: block;
- color: #2F4858;
- }
- #success-single-header .success-img-title .success-name h1 {
- margin: 0px !important;
- color: #000;
- font-family: "DM Serif Text", serif;
- font-size: 30px !important;
- }
- #success-single-header .success-socials {
- margin: 0px 20px !important;
- font-size: 26x;
- }
- #success-single-header .success-socials a {
- margin: 0px 10px;
- }
- .success-single-text {
- max-width: 900px;
- margin: 0px auto 100px !important;
- }
- .success-single-text p {
- text-align: justify;
- color: #2F4858;
- }
- #success-single-header h5 {
- margin-top: 30px;
- margin-bottom: unset;
- font-size: 30px;
- }
- #success-single-header .breadcrumb {
- margin-top: 0 !important;
- margin-bottom: 1rem;
- }
- #success-single-header .breadcrumb li {
- padding-top: 10px;
- padding-bottom: 10px;
- font-size: 0.8rem;
- font-weight: 600;
- }
- /*# sourceMappingURL=single-success.css.map */
- #success-single-header .success-img-title {
- margin-bottom: 2rem;
- }
- </style>
- <?php get_footer(); ?>
|