{"id":44,"date":"2019-06-19T18:33:35","date_gmt":"2019-06-19T18:33:35","guid":{"rendered":"https:\/\/gpsites.co\/broadcast\/?page_id=44"},"modified":"2019-06-19T18:33:35","modified_gmt":"2019-06-19T18:33:35","slug":"about","status":"publish","type":"page","link":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/","title":{"rendered":"About"},"content":{"rendered":"\n<p>Thanks for importing Broadcast \ud83d\ude42<\/p>\n\n\n\n<p>Broadcast is constructed primarily using GP\u2019s awesome built-in features with some CSS to provide custom styles.<\/p>\n\n\n\n<p>The sections below provides a quick overview on how the site was built and some potential modifications. All the CSS mentioned below can be found in the <a rel=\"noreferrer noopener\" href=\"https:\/\/docs.generatepress.com\/article\/adding-css\/#additional-css\" target=\"_blank\" class=\"broken_link\">Additional CSS<\/a> field in the customizer.<\/p>\n\n\n\n<h2>Header\/Navigation<\/h2>\n\n\n\n<p>The header\/navigation is simply created using the customizer options. You can modify them in <a href=\"https:\/\/docs.generatepress.com\/article\/site-identity-overview\/\" target=\"_blank\" rel=\"noreferrer noopener\" label=\" (opens in a new tab)\" class=\"broken_link\">Site Identity<\/a>, <a rel=\"noreferrer noopener\" label=\" (opens in a new tab)\" href=\"https:\/\/docs.generatepress.com\/article\/primary-navigation-layout-overview\/\" target=\"_blank\" class=\"broken_link\">Primary Navigation<\/a> and <a rel=\"noreferrer noopener\" label=\"Sticky Navigation (opens in a new tab)\" href=\"https:\/\/docs.generatepress.com\/article\/sticky-navigation\/\" target=\"_blank\" class=\"broken_link\">Sticky Navigation<\/a> sections in the customizer.<\/p>\n\n\n\n<h2>Header Element\/Page Hero<\/h2>\n\n\n\n<p>The section below the primary navigation is created using the <a rel=\"noreferrer noopener\" label=\"Header Element (opens in a new tab)\" href=\"https:\/\/docs.generatepress.com\/article\/header-element-overview\/\" target=\"_blank\" class=\"broken_link\">Header Element<\/a> module. You can find 4 header elements in  <br>Appearance &gt; Elements: <em>Pages hero<\/em>, <em>Archives hero<\/em>, <em>Posts hero<\/em> and <em>Home hero<\/em>.<\/p>\n\n\n\n<p>CSS is used to provide a unique container width, gradient background and styles for the <code>&lt;h2&gt;<\/code> and <code>&lt;p&gt;<\/code> elements:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Page hero styles *\/\n.page-hero.gradient {\n    background-image: linear-gradient( 145deg, transparent 0%, rgba(255,255,255, 0.5) 100%);\n    max-width: 1440px;\n    margin: auto;\n}\n.inside-page-hero h2 {\n    font-size: 40px;\n}\n.inside-page-hero p {\n    font-size: 20px;\n}<\/code><\/pre>\n\n\n\n<p>This site is an excellent resource to tweak the gradient to your liking: <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/cssgradient.io\/\" target=\"_blank\">https:\/\/cssgradient.io\/<\/a>.<\/p>\n\n\n\n<h2>General Container<\/h2>\n\n\n\n<p>The following CSS is used to style the main container, include merging with the header element above.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Main container styles *\/\n.separate-containers .page-hero + #page .site-main {\n    margin-top: -80px !important;\n}\n@media (max-width: 768px) {\n    body .site.grid-container {\n        margin-left: 20px;\n        margin-right: 20px;\n    }\n}\n.site-content .inside-article, .sidebar .widget, .comments-area {\n    box-shadow: 0px 0px 0px 1px rgba(214,218,222,1);\n}<\/code><\/pre>\n\n\n\n<h2>Posts List<\/h2>\n\n\n\n<p>The home page posts list can be modified using our <a rel=\"noreferrer noopener\" href=\"https:\/\/docs.generatepress.com\/article\/blog-overview\/\" target=\"_blank\" class=\"broken_link\">Blog<\/a> module.<\/p>\n\n\n\n<p>Here is the CSS used to style them:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Posts grid styles *\/\n@media (min-width: 769px) {\n    .generate-columns .inside-article {\n        transition: all 0.2s ease-in;\n        transform: scale(1);\n    }\n    .generate-columns .inside-article:hover {\n        transform: scale(1.01);\n        box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);\n    }\n    p.read-more-container {\n        opacity: 0;\n        transition: all 0.3s ease-in-out;\n    }\n    .generate-columns .inside-article:hover p.read-more-container {\n        opacity: 1;\n    }\n}\n.generate-columns .inside-article {\n    display: flex;\n    flex-direction: column;\n    border-radius: 3px;\n}\n.generate-columns .inside-article .entry-summary {\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n}\n.entry-summary p:not(.read-more-container) {\n    display: none;\n}\n.read-more-container {\n    margin-top: auto;\n    text-align: center;\n}\nbutton, html input&#091;type=\"button\"], input&#091;type=\"reset\"], input&#091;type=\"submit\"], a.button, a.button:visited {\n    border-width: 1px;\n    border-style: solid;\n    border-color: inherit;\n    border-radius: 3px;\n}\n.blog footer.entry-meta, .archive footer.entry-meta {\n    margin-top: 0;\n}<\/code><\/pre>\n\n\n\n<h2>Sidebar<\/h2>\n\n\n\n<p>The plugin <a href=\"https:\/\/wordpress.org\/plugins\/recent-posts-widget-with-thumbnails\/\">Recent Posts Widget With Thumbnails<\/a> is used in the left sidebar widgets area to show recent posts in <a rel=\"noreferrer noopener\" label=\"single posts (opens in a new tab)\" href=\"https:\/\/docs.generatepress.com\/article\/sidebar-layout\/#single-post-sidebar-layout\" target=\"_blank\" class=\"broken_link\">single posts<\/a>.<\/p>\n\n\n\n<p>The first sidebar widget is colored with this CSS below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Sidebar styles *\/\n.sidebar .widget:first-child {\n    background-image: linear-gradient( 145deg, rgb(164,218,216) 0%, rgb(228,243,242) 100%);\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Thanks for importing Broadcast \ud83d\ude42 Broadcast is constructed primarily using GP\u2019s awesome built-in features with &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"About\" class=\"read-more button\" href=\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/#more-44\" aria-label=\"Plus sur About\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.7.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>About - triskelCommune1<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About - triskelCommune1\" \/>\n<meta property=\"og:description\" content=\"Thanks for importing Broadcast \ud83d\ude42 Broadcast is constructed primarily using GP\u2019s awesome built-in features with ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/\" \/>\n<meta property=\"og:site_name\" content=\"triskelCommune1\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/\",\"url\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/\",\"name\":\"About - triskelCommune1\",\"isPartOf\":{\"@id\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/#website\"},\"datePublished\":\"2019-06-19T18:33:35+00:00\",\"dateModified\":\"2019-06-19T18:33:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/#website\",\"url\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/\",\"name\":\"triskelCommune1\",\"description\":\"Un WordPress pour une commune\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpboot.triskel.ch\/triskelcommune1\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fr-FR\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"About - triskelCommune1","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"fr_FR","og_type":"article","og_title":"About - triskelCommune1","og_description":"Thanks for importing Broadcast \ud83d\ude42 Broadcast is constructed primarily using GP\u2019s awesome built-in features with ... Read More","og_url":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/","og_site_name":"triskelCommune1","twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/","url":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/","name":"About - triskelCommune1","isPartOf":{"@id":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/#website"},"datePublished":"2019-06-19T18:33:35+00:00","dateModified":"2019-06-19T18:33:35+00:00","breadcrumb":{"@id":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/"},{"@type":"ListItem","position":2,"name":"About"}]},{"@type":"WebSite","@id":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/#website","url":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/","name":"triskelCommune1","description":"Un WordPress pour une commune","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}},"coauthors":[],"author_meta":{"author_link":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/author\/admin\/","display_name":"admin"},"relative_dates":{"created":"Publi\u00e9 7 ans il y a","modified":"Mis \u00e0 jour 7 ans il y a"},"absolute_dates":{"created":"Publi\u00e9 le 19 juin 2019","modified":"Mise \u00e0 jour le 19 juin 2019"},"absolute_dates_time":{"created":"Publi\u00e9 le 19 juin 2019 18 h 33 min","modified":"Mise \u00e0 jour le 19 juin 2019 18 h 33 min"},"featured_img_caption":"","featured_img":false,"series_order":"","_links":{"self":[{"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/pages\/44"}],"collection":[{"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/comments?post=44"}],"version-history":[{"count":0,"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/pages\/44\/revisions"}],"wp:attachment":[{"href":"https:\/\/wpboot.triskel.ch\/triskelcommune1\/wp-json\/wp\/v2\/media?parent=44"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}