|
@@ -15,19 +15,21 @@ get_header(); ?>
|
|
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
|
|
-
|
|
|
<div class="sections">
|
|
|
|
|
|
<section id="news-single-header" class="container">
|
|
|
- <h5>News</h5>
|
|
|
+ <h5 class="page-title">News</h5>
|
|
|
+ <!-- breadcrumb -->
|
|
|
+ <nav class="breadcrumb" aria-label="breadcrumb">
|
|
|
+ <ul>
|
|
|
+ <li><a href="/">Home</a></li>
|
|
|
+ <li><a href="/news/">News</a></li>
|
|
|
+ </ul>
|
|
|
+ </nav>
|
|
|
<h1><?php echo get_the_title(); ?></h1>
|
|
|
- <p class="subtext">
|
|
|
- <?php echo get_the_excerpt(); ?>
|
|
|
- </p>
|
|
|
<span class="news-date single"><?php the_field('news_date'); ?></span>
|
|
|
|
|
|
<hr>
|
|
|
-
|
|
|
<div class="news-socials">
|
|
|
<div>
|
|
|
SHARE:
|
|
@@ -35,7 +37,6 @@ get_header(); ?>
|
|
|
<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>
|
|
|
|
|
@@ -217,5 +218,46 @@ get_header(); ?>
|
|
|
}
|
|
|
|
|
|
/*# sourceMappingURL=single-news.css.map */
|
|
|
+
|
|
|
+ #news-single-header h5 {
|
|
|
+ margin-top: 30px;
|
|
|
+ margin-bottom: unset;
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header .breadcrumb {
|
|
|
+ margin-top: 0 !important;
|
|
|
+ margin-bottom: 1rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header .breadcrumb li {
|
|
|
+ padding-top: 10px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ font-size: 0.8rem;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header h1 {
|
|
|
+ color: #000 !important;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ margin-bottom: 1.5rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header h5 {
|
|
|
+ color: #2F4858;
|
|
|
+ font-size: 34px;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header .subtext {
|
|
|
+ font-size: 22px !important;
|
|
|
+ color: #2F4858 !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ #news-single-header .news-date {
|
|
|
+ display: block;
|
|
|
+ color: #485680;
|
|
|
+ font-weight: 800;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
</style>
|
|
|
<?php get_footer(); ?>
|