Make WordPress Themes

Changeset 299141


Ignore:
Timestamp:
11/19/2025 08:09:57 AM (5 days ago)
Author:
themedropbox
Message:

New version of Psychotherapy - 1.0.9

Location:
psychotherapy/1.0.9
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • psychotherapy/1.0.9/README.txt

    r297026 r299141  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 1.0.7
     6Stable tag: 1.0.9
    77Requires PHP: 7.2
    88License: GPLv3 or later
     
    1717== Changelog ==
    1818
     19= Version 1.0.9 =
     20- Updated activation notice image.
     21- Added banner on single product.
     22- Updated plugin activation process on get started button.
     23
    1924= Version 1.0.7 =
    2025- Updated description.
     
    2328- Resolved preview error.
    2429- Updated search template.
     30- Resolved css error.
    2531
    2632= Version 1.0.5 =
  • psychotherapy/1.0.9/functions.php

    r280319 r299141  
    165165}
    166166add_action('after_setup_theme', 'psychotherapy_theme_setting');
     167
     168
     169/* Enqueue admin-notice-script js */
     170add_action('admin_enqueue_scripts', function ($hook) {
     171    if ($hook !== 'appearance_page_psychotherapy') return;
     172
     173    wp_enqueue_script('admin-notice-script', get_template_directory_uri() . '/get-started/js/admin-notice-script.js', ['jquery'], null, true);
     174    wp_localize_script('admin-notice-script', 'pluginInstallerData', [
     175        'ajaxurl'     => admin_url('admin-ajax.php'),
     176        'nonce'       => wp_create_nonce('install_plugin_nonce'), // Match this with PHP nonce check
     177        'redirectUrl' => admin_url('themes.php?page=psychotherapy'),
     178    ]);
     179});
     180
     181add_action('wp_ajax_check_plugin_activation', function () {
     182    if (!isset($_POST['plugin']) || empty($_POST['plugin'])) {
     183        wp_send_json_error(['message' => 'Missing plugin identifier']);
     184    }
     185
     186    include_once ABSPATH . 'wp-admin/includes/plugin.php';
     187
     188    // Map plugin identifiers to their main files
     189    $psychotherapy_plugin_map = [
     190        'woocommerce'          => 'woocommerce/woocommerce.php',
     191        'wordclever_ai_content_writer'    => 'wordclever-ai-content-writer/wordclever.php',
     192    ];
     193
     194    $psychotherapy_requested_plugin = sanitize_text_field($_POST['plugin']);
     195
     196    if (!isset($psychotherapy_plugin_map[$psychotherapy_requested_plugin])) {
     197        wp_send_json_error(['message' => 'Invalid plugin']);
     198    }
     199
     200    $psychotherapy_plugin_file = $psychotherapy_plugin_map[$psychotherapy_requested_plugin];
     201    $psychotherapy_is_active   = is_plugin_active($psychotherapy_plugin_file);
     202
     203    wp_send_json_success(['active' => $psychotherapy_is_active]);
     204});
     205
     206add_filter( 'woocommerce_enable_setup_wizard', '__return_false' );
  • psychotherapy/1.0.9/get-started/js/admin-notice-script.js

    r280319 r299141  
    1717});
    1818
    19 // WordClever – AI Content Writer plugin activation
     19// Plugin – AI Content Writer plugin activation
    2020document.addEventListener('DOMContentLoaded', function () {
    2121    const psychotherapy_button = document.getElementById('install-activate-button');
     
    3030        // Step 1: Check if plugin is already active
    3131        const psychotherapy_checkData = new FormData();
    32         psychotherapy_checkData.append('action', 'check_wordclever_activation');
     32        psychotherapy_checkData.append('action', 'check_plugin_activation');
    3333
    34         fetch(installWordcleverData.ajaxurl, {
     34        fetch(installPluginData.ajaxurl, {
    3535            method: 'POST',
    3636            body: psychotherapy_checkData,
     
    4646
    4747                const psychotherapy_installData = new FormData();
    48                 psychotherapy_installData.append('action', 'install_and_activate_wordclever_plugin');
    49                 psychotherapy_installData.append('_ajax_nonce', installWordcleverData.nonce);
     48                psychotherapy_installData.append('action', 'install_and_activate_required_plugin');
     49                psychotherapy_installData.append('_ajax_nonce', installPluginData.nonce);
    5050
    51                 fetch(installWordcleverData.ajaxurl, {
     51                fetch(installPluginData.ajaxurl, {
    5252                    method: 'POST',
    5353                    body: psychotherapy_installData,
  • psychotherapy/1.0.9/get-started/notice.php

    r280319 r299141  
    6060
    6161                            <script type="text/javascript">
    62                             document.getElementById('install-activate-button').addEventListener('click', function () {
    63                                 const psychotherapy_button = this;
    64                                 const psychotherapy_redirectUrl = '<?php echo esc_url(admin_url("themes.php?page=psychotherapy")); ?>';
    65                                 // First, check if plugin is already active
    66                                 jQuery.post(ajaxurl, { action: 'check_wordclever_activation' }, function (response) {
    67                                     if (response.success && response.data.active) {
    68                                         // Plugin already active — just redirect
    69                                         window.location.href = psychotherapy_redirectUrl;
    70                                     } else {
    71                                         // Show Installing & Activating only if not already active
    72                                         psychotherapy_button.textContent = 'Installing & Activating...';
     62                                document.getElementById('install-activate-button').addEventListener('click', function () {
     63                                    const psychotherapy_button = this;
     64                                    const psychotherapy_redirectUrl = '<?php echo esc_url(admin_url("themes.php?page=psychotherapy")); ?>';
     65                                    // First, check if plugin is already active
     66                                    jQuery.post(ajaxurl, { action: 'check_plugin_activation' }, function (response) {
     67                                        if (response.success && response.data.active) {
     68                                            // Plugin already active — just redirect
     69                                            window.location.href = psychotherapy_redirectUrl;
     70                                        } else {
     71                                            // Show Installing & Activating only if not already active
     72                                            psychotherapy_button.textContent = 'Installing & Activating...';
    7373
    74                                         jQuery.post(ajaxurl, {
    75                                             action: 'install_and_activate_wordclever_plugin',
    76                                             nonce: '<?php echo wp_create_nonce("install_activate_nonce"); ?>'
    77                                         }, function (response) {
    78                                             if (response.success) {
    79                                                 window.location.href = psychotherapy_redirectUrl;
    80                                             } else {
    81                                                 alert('Failed to activate the plugin.');
    82                                                 psychotherapy_button.textContent = 'Try Again';
    83                                             }
    84                                         });
    85                                     }
    86                                 });
    87                             });
    88                             </script>
     74                                            jQuery.post(ajaxurl, {
     75                                                action: 'install_and_activate_required_plugin',
     76                                                nonce: '<?php echo wp_create_nonce("install_activate_nonce"); ?>'
     77                                            }, function (response) {
     78                                                if (response.success) {
     79                                                    window.location.href = psychotherapy_redirectUrl;
     80                                                } else {
     81                                                    alert('Failed to activate the plugin.');
     82                                                    psychotherapy_button.textContent = 'Try Again';
     83                                                }
     84                                            });
     85                                        }
     86                                    });
     87                                });
     88                            </script>
    8989
    9090                           <a href="<?php echo esc_url( PSYCHOTHERAPY_NOTICE_BUY_NOW ); ?>" target="_blank" id="go-pro-button" class="button admin-button buy-now-button"><?php echo __('Buy Now ', 'psychotherapy'); ?></a>
  • psychotherapy/1.0.9/inc/tgm/plugin-activation.php

    r280319 r299141  
    5959     */
    6060    $plugins = array(
     61        array(
     62            'name'      => esc_html__( 'WooCommerce', 'psychotherapy' ),
     63            'slug'      => 'woocommerce',
     64            'required'  => false,
     65        ),
    6166        array(
    6267            'name'      => esc_html__( 'WordClever – AI Content Writer', 'psychotherapy' ),
     
    9095
    9196// WordClever – AI Content Writer plugin activation
    92 add_action('wp_ajax_install_and_activate_wordclever_plugin', 'install_and_activate_wordclever_plugin');
     97add_action('wp_ajax_install_and_activate_required_plugin', 'install_and_activate_required_plugin');
    9398
    94 function install_and_activate_wordclever_plugin() {
     99function install_and_activate_required_plugin() {
    95100    // Verify nonce for security
    96101    if (!isset($_POST['nonce']) || !wp_verify_nonce($_POST['nonce'], 'install_activate_nonce')) {
    97102        wp_send_json_error(['message' => 'Nonce verification failed.']);
    98103    }
    99 
    100     // Define plugin slugs and file paths
    101     $psychotherapy_woocommerce_slug = 'woocommerce';
    102     $psychotherapy_woocommerce_file = 'woocommerce/woocommerce.php';
    103     $psychotherapy_woocommerce_url  = 'https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip';
    104 
    105     $psychotherapy_wordclever_slug = 'wordclever-ai-content-writer';
    106     $psychotherapy_wordclever_file = 'wordclever-ai-content-writer/wordclever.php';
    107     $psychotherapy_wordclever_url  = 'https://downloads.wordpress.org/plugin/wordclever-ai-content-writer.latest-stable.zip';
    108104
    109105    // Include necessary WordPress files
     
    116112    $psychotherapy_upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin());
    117113
    118     // Step 1: Install and activate WooCommerce if not active
    119     if (!is_plugin_active($psychotherapy_woocommerce_file)) {
    120         $psychotherapy_installed_plugins = get_plugins();
     114    // Define required plugins
     115    $plugins = [
     116        [
     117            'slug'     => 'woocommerce',
     118            'file'     => 'woocommerce/woocommerce.php',
     119            'url'      => 'https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip',
     120        ],
     121        [
     122            'slug'     => 'wordclever-ai-content-writer',
     123            'file'     => 'wordclever-ai-content-writer/wordclever.php',
     124            'url'      => 'https://downloads.wordpress.org/plugin/wordclever-ai-content-writer.latest-stable.zip',
     125        ],
     126    ];
    121127
    122         if (!isset($psychotherapy_installed_plugins[$psychotherapy_woocommerce_file])) {
    123             // Install WooCommerce
    124             $psychotherapy_install_wc = $psychotherapy_upgrader->install($psychotherapy_woocommerce_url);
    125             if (is_wp_error($psychotherapy_install_wc)) {
    126                 wp_send_json_error(['message' => 'WooCommerce installation failed.']);
     128    $psychotherapy_installed_plugins = get_plugins();
     129
     130    foreach ($plugins as $plugin) {
     131        // Install if not present
     132        if (!isset($psychotherapy_installed_plugins[$plugin['file']])) {
     133            $psychotherapy_install_result = $psychotherapy_upgrader->install($plugin['url']);
     134            if (is_wp_error($psychotherapy_install_result)) {
     135                wp_send_json_error(['message' => "Failed to install {$plugin['slug']}"]);
    127136            }
    128137        }
    129138
    130         // Activate WooCommerce
    131         $psychotherapy_activate_wc = activate_plugin($psychotherapy_woocommerce_file);
    132         if (is_wp_error($psychotherapy_activate_wc)) {
    133             wp_send_json_error(['message' => 'WooCommerce activation failed.', 'error' => $psychotherapy_activate_wc->get_error_message()]);
    134         }
    135     }
    136 
    137     // Step 2: Install and activate WordClever plugin
    138     if (!is_plugin_active($psychotherapy_wordclever_file)) {
    139         $psychotherapy_installed_plugins = get_plugins();
    140 
    141         if (!isset($psychotherapy_installed_plugins[$psychotherapy_wordclever_file])) {
    142             // Install WordClever plugin
    143             $psychotherapy_install_wc_plugin = $psychotherapy_upgrader->install($psychotherapy_wordclever_url);
    144             if (is_wp_error($psychotherapy_install_wc_plugin)) {
    145                 wp_send_json_error(['message' => 'WordClever plugin installation failed.']);
     139        // Activate if not active
     140        if (!is_plugin_active($plugin['file'])) {
     141            $psychotherapy_activate_result = activate_plugin($plugin['file']);
     142            if (is_wp_error($psychotherapy_activate_result)) {
     143                wp_send_json_error([
     144                    'message' => "Failed to activate {$plugin['slug']}",
     145                    'error'   => $$psychotherapy_activate_result->get_error_message(),
     146                ]);
    146147            }
    147         }
    148 
    149         // Activate WordClever plugin
    150         $psychotherapy_activate_wc_plugin = activate_plugin($psychotherapy_wordclever_file);
    151         if (is_wp_error($psychotherapy_activate_wc_plugin)) {
    152             wp_send_json_error(['message' => 'WordClever plugin activation failed.', 'error' => $psychotherapy_activate_wc_plugin->get_error_message()]);
    153148        }
    154149    }
  • psychotherapy/1.0.9/style.css

    r297026 r299141  
    55Author URI: https://www.wpradiant.net/
    66Description: Psychotherapy is a free, clean, and professionally crafted theme designed specifically for psychotherapy, mental health services, therapy clinics, online therapy, counseling centers, licensed therapists, and wellness professionals. Ideal for psychologists, psychiatrists, mental health coaches, relationship counselors, behavioral therapy providers, trauma therapists, emotional wellness experts, and self-care specialists, it offers a calm, trustworthy, and fully responsive design that performs beautifully on all devices. The lightweight structure includes essential homepage sections such as a modern slider, therapy service highlights, a blog section, and a contact form, allowing you to connect effortlessly with clients. With an SEO-friendly framework, mobile optimization, and fast-loading performance, it ensures better visibility and a smooth user experience. Perfect for mental health websites, counseling services, therapy center design, mindfulness coaching, mental wellness programs, and virtual therapy sessions, the theme enables you to share therapy insights, wellness tips, or self-care guides through a clean and engaging layout. Whether promoting depression treatment, anxiety therapy, cognitive behavioral therapy (CBT), or online counseling, it provides an ideal foundation for professionals aiming to grow their client base. Integration with the Bookly plugin enhances appointment scheduling, allowing clients to book therapy sessions online, manage appointments, and receive automated reminders. Download the Psychotherapy theme today to create a compassionate, trustworthy, and professional online presence for your mental health practice.https://preview.wpradiant.net/psychotherapy-pro/
    7 Version: 1.0.7
     7Version: 1.0.9
    88Requires at least: 6.0
    99Tested up to: 6.8
     
    27472747    gap: 0px !important;
    27482748  }
     2749 .testimonial-swiper-button-prev {
     2750    margin-left: -10% !important;
     2751}
     2752.testimonial-swiper-button-next {
     2753    margin-right: -10% !important;
     2754}
    27492755}
    27502756@media (min-width: 600px) and (max-width:781px) {
  • psychotherapy/1.0.9/templates/single-post-no-sidebar.html

    r278404 r299141  
    55<div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);min-height:100px"><span aria-hidden="true" class="wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"textColor":"background","fontSize":"extra-large"} /-->
    66
    7 <!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background","className":"banner-meta","layout":{"type":"flex","allowOrientation":false,"justifyContent":"center","flexWrap":"wrap"},"fontSize":"normal","fontFamily":"poppins"} -->
     7<!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background","className":"banner-meta","layout":{"type":"flex","allowOrientation":false,"justifyContent":"center","flexWrap":"wrap"},"fontSize":"normal","fontFamily":"roboto"} -->
    88<div class="wp-block-group alignwide banner-meta has-background-color has-text-color has-link-color has-raleway-font-family has-normal-font-size"><!-- wp:post-author {"showAvatar":false,"showBio":false} /-->
    99
     
    3232
    3333<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"15px"}}} -->
    34 <div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"lineHeight":"2","fontSize":"18px"}},"layout":{"inherit":false},"fontFamily":"poppins"} /--></div>
     34<div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"lineHeight":"2","fontSize":"18px"}},"layout":{"inherit":false},"fontFamily":"roboto"} /--></div>
    3535<!-- /wp:group --></div>
    3636<!-- /wp:group -->
    3737
    3838<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
    39 <div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"17px","fontFamily":"poppins"} -->
     39<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"17px","fontFamily":"roboto"} -->
    4040<div class="wp-block-group alignwide has-raleway-font-family has-upper-heading-font-size"><!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
    4141<!-- /wp:group --></div>
     
    4343
    4444<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
    45 <div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"small","fontFamily":"poppins"} -->
     45<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"small","fontFamily":"roboto"} -->
    4646<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size"><!-- wp:post-navigation-link {"type":"previous","fontSize":"medium"} /-->
    4747
     
    5151
    5252<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"80px","padding":{"top":"40px","right":"40px","bottom":"40px","left":"40px"}}},"backgroundColor":"background-secondary","className":"has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
    53 <div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px"><!-- wp:comments {"legacy":true,"align":"wide","style":{"typography":{"lineHeight":"2","fontSize":"18px"}},"className":"no-margin no-padding","fontFamily":"poppins"} /-->
    54    
    55 <!-- wp:group {"align":"wide","className":"related-post","layout":{"type":"constrained"}} -->
    56 <div class="wp-block-group alignwide related-post"><!-- wp:heading {"textAlign":"left","level":3,"align":"wide"} -->
    57 <h3 class="wp-block-heading alignwide has-text-align-left">Related Post</h3>
    58 <!-- /wp:heading -->
    59 
    60 <!-- wp:query {"queryId":65,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"align":"wide"} -->
    61 <div class="wp-block-query alignwide"><!-- wp:post-template {"layout":{"type":"grid","columnCount":3}} -->
    62 <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30","right":"var:preset|spacing|30"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
    63 <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:post-featured-image /-->
    64 
    65 <!-- wp:post-title {"isLink":true} /-->
    66 
    67 <!-- wp:post-excerpt {"moreText":"Read More","excerptLength":20} /--></div>
    68 <!-- /wp:group -->
    69 <!-- /wp:post-template --></div>
    70 <!-- /wp:query --></div>
    71 <!-- /wp:group --></div>
     53<div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px"><!-- wp:comments {"legacy":true,"align":"wide","style":{"typography":{"lineHeight":"2","fontSize":"18px"}},"className":"no-margin no-padding","fontFamily":"roboto"} /--></div>
    7254<!-- /wp:group --></main>
    7355<!-- /wp:group --></div>
  • psychotherapy/1.0.9/templates/single-post-on-left.html

    r278404 r299141  
    11<!-- wp:template-part {"slug":"header","theme":"psychotherapy","tagName":"header"} /-->
     2<!-- wp:group {"layout":{"type":"constrained","contentSize":"80%"}} -->
     3<div class="wp-block-group"><!-- wp:cover {"customOverlayColor":"var(--wp--preset--color--accent)","isUserOverlayColor":true,"minHeight":100,"isDark":false,"align":"full","style":{"spacing":{"blockGap":"24px","padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
     4<div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);min-height:100px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-100 has-background-dim" style="background-color:var(--wp--preset--color--accent)"></span><div class="wp-block-cover__inner-container"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"textColor":"background","fontSize":"extra-large"} /-->
    25
    3 <!-- wp:group {"layout":{"type":"constrained","contentSize":"80%"}} -->
    4 <div class="wp-block-group"><!-- wp:cover {"customOverlayColor":"var(\u002d\u002dwp\u002d\u002dpreset\u002d\u002dcolor\u002d\u002daccent)","isUserOverlayColor":true,"minHeight":100,"isDark":false,"align":"full","style":{"spacing":{"blockGap":"24px","padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
    5     <div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);min-height:100px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-100 has-background-dim" style="background-color:var(--wp--preset--color--accent)"></span><div class="wp-block-cover__inner-container"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"textColor":"background","fontSize":"extra-large"} /--></div></div>
    6     <!-- /wp:cover --></div>
    7     <!-- /wp:group -->
    8    
    9     <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","contentSize":"80%"}} -->
    10     <div class="wp-block-group alignfull" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","align":"full","className":"no-margin no-padding","style":{"spacing":{"padding":{"top":"60px","bottom":"60px"}}},"backgroundColor":"background","layout":{"inherit":true,"type":"constrained","contentSize":"80%"}} -->
    11     <main class="wp-block-group alignfull no-margin no-padding has-background-background-color has-background" style="padding-top:60px;padding-bottom:60px"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":"60px"}}} -->
    12     <div class="wp-block-columns alignwide"><!-- wp:column {"width":"30%"} -->
    13     <div class="wp-block-column" style="flex-basis:30%"><!-- wp:template-part {"slug":"sidebar","theme":"psychotherapy","tagName":"div"} /--></div>
    14     <!-- /wp:column -->
    15    
    16     <!-- wp:column {"width":"","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
    17     <div class="wp-block-column" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","className":"animated animated-fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
    18     <main class="wp-block-group animated animated-fadeInUp"><!-- wp:group {"align":"wide","layout":{"inherit":true,"type":"constrained"}} -->
    19     <div class="wp-block-group alignwide"><!-- wp:post-featured-image {"align":"wide","style":{"spacing":{"margin":{"bottom":"0px","top":"0px","right":"0px","left":"0px"}}}} /-->
    20    
    21     <!-- wp:group {"layout":{"type":"constrained","contentSize":"100%"}} -->
    22     <div class="wp-block-group"><!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"upper-heading","fontFamily":"poppins","layout":{"type":"flex","flexWrap":"wrap"}} -->
    23     <div class="wp-block-group has-primary-color has-text-color has-link-color has-poppins-font-family has-upper-heading-font-size"><!-- wp:post-author /-->
    24    
    25     <!-- wp:paragraph -->
    26     <p>| </p>
    27     <!-- /wp:paragraph -->
    28    
    29     <!-- wp:post-date /-->
    30    
    31     <!-- wp:paragraph -->
    32     <p>| </p>
    33     <!-- /wp:paragraph -->
    34    
    35     <!-- wp:post-terms {"term":"category"} /--></div>
    36     <!-- /wp:group --></div>
    37     <!-- /wp:group -->
    38    
    39     <!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"15px"}}} -->
    40     <div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"fontFamily":"poppins","layout":{"inherit":false}} /--></div>
    41     <!-- /wp:group --></div>
    42     <!-- /wp:group -->
    43    
    44     <!-- wp:group {"align":"wide","className":"has-raleway-font-family","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"small","layout":{"inherit":true,"type":"constrained","contentSize":"100%"}} -->
    45     <div class="wp-block-group alignwide has-raleway-font-family has-primary-color has-text-color has-link-color has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
    46     <!-- /wp:group -->
    47    
    48     <!-- wp:group {"align":"wide","className":"has-raleway-font-family","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"fontSize":"small","layout":{"inherit":true,"type":"constrained","contentSize":"100%"}} -->
    49     <div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
    50     <div class="wp-block-group"><!-- wp:post-navigation-link {"type":"previous","label":"","fontSize":"medium"} /-->
    51    
    52     <!-- wp:post-navigation-link {"fontSize":"medium"} /--></div>
    53     <!-- /wp:group --></div>
    54     <!-- /wp:group -->
    55    
    56     <!-- wp:group {"align":"wide","className":"has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp","style":{"spacing":{"blockGap":"80px","padding":{"top":"5px","right":"5px","bottom":"5px","left":"5px"}}},"backgroundColor":"background-secondary","layout":{"inherit":true,"type":"constrained"}} -->
    57     <div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px"><!-- wp:comments {"legacy":true,"align":"wide","className":"no-margin no-padding","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"fontFamily":"poppins"} /-->
    58    
    59     <!-- wp:group {"align":"wide","className":"related-post","layout":{"type":"constrained"}} -->
    60     <div class="wp-block-group alignwide related-post"><!-- wp:heading {"textAlign":"left","level":3,"align":"wide"} -->
    61     <h3 class="wp-block-heading alignwide has-text-align-left">Related Post</h3>
    62     <!-- /wp:heading -->
    63    
    64     <!-- wp:query {"queryId":45,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"align":"wide"} -->
    65     <div class="wp-block-query alignwide"><!-- wp:post-template {"layout":{"type":"grid","columnCount":3}} -->
    66     <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30","right":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
    67     <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:post-featured-image /-->
    68    
    69     <!-- wp:post-title {"isLink":true} /-->
    70    
    71     <!-- wp:post-excerpt {"moreText":"Read More","excerptLength":20} /--></div>
    72     <!-- /wp:group -->
    73     <!-- /wp:post-template --></div>
    74     <!-- /wp:query --></div>
    75     <!-- /wp:group --></div>
    76     <!-- /wp:group --></main>
    77     <!-- /wp:group --></div>
    78     <!-- /wp:column --></div>
    79     <!-- /wp:columns --></main>
    80     <!-- /wp:group --></div>
    81     <!-- /wp:group -->
    82    
     6<!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background","className":"banner-meta","layout":{"type":"flex","allowOrientation":false,"justifyContent":"center","flexWrap":"wrap"},"fontSize":"normal","fontFamily":"roboto"} -->
     7<div class="wp-block-group alignwide banner-meta has-background-color has-text-color has-link-color has-raleway-font-family has-normal-font-size"><!-- wp:post-author {"showAvatar":false,"showBio":false} /-->
     8
     9<!-- wp:paragraph -->
     10<p>|</p>
     11<!-- /wp:paragraph -->
     12
     13<!-- wp:post-date /-->
     14
     15<!-- wp:paragraph -->
     16<p>|</p>
     17<!-- /wp:paragraph -->
     18
     19<!-- wp:post-terms {"term":"category","fontSize":"17px"} /--></div>
     20<!-- /wp:group --></div></div>
     21<!-- /wp:cover --></div>
     22<!-- /wp:group -->
     23
     24<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","contentSize":"80%"}} -->
     25<div class="wp-block-group alignfull" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","align":"full","style":{"spacing":{"padding":{"top":"60px","bottom":"60px"}}},"backgroundColor":"background","className":"no-margin no-padding","layout":{"inherit":true,"type":"constrained","contentSize":"80%"}} -->
     26<main class="wp-block-group alignfull no-margin no-padding has-background-background-color has-background" style="padding-top:60px;padding-bottom:60px"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":"60px"}}} -->
     27<div class="wp-block-columns alignwide"><!-- wp:column {"width":"30%"} -->
     28<div class="wp-block-column" style="flex-basis:30%"><!-- wp:template-part {"slug":"sidebar","theme":"psychotherapy","tagName":"div"} /--></div>
     29<!-- /wp:group -->
     30
     31<!-- wp:column {"width":"","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
     32<div class="wp-block-column" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","className":"animated animated-fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
     33<main class="wp-block-group animated animated-fadeInUp"><!-- wp:group {"align":"wide","layout":{"inherit":true,"type":"constrained"}} -->
     34<div class="wp-block-group alignwide"><!-- wp:post-featured-image {"align":"wide","style":{"spacing":{"margin":{"bottom":"0px","top":"0px","right":"0px","left":"0px"}}}} /-->
     35
     36<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"15px"}}} -->
     37<div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"layout":{"inherit":false},"fontFamily":"roboto"} /--></div>
     38<!-- /wp:group --></div>
     39<!-- /wp:group -->
     40
     41<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
     42<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"17px","fontFamily":"roboto"} -->
     43<div class="wp-block-group alignwide has-raleway-font-family has-upper-heading-font-size"><!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
     44<!-- /wp:group --></div>
     45<!-- /wp:group -->
     46
     47<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
     48<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"small","fontFamily":"roboto"} -->
     49<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size"><!-- wp:post-navigation-link {"type":"previous","fontSize":"medium"} /-->
     50
     51<!-- wp:post-navigation-link {"fontSize":"medium"} /--></div>
     52<!-- /wp:group --></div>
     53<!-- /wp:group -->
     54
     55<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"80px","padding":{"top":"5px","right":"5px","bottom":"5px","left":"5px"}}},"backgroundColor":"background-secondary","className":"has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
     56<div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px"><!-- wp:comments {"legacy":true,"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"className":"no-margin no-padding","fontFamily":"roboto"} /--></div>
     57<!-- /wp:group --></main>
     58<!-- /wp:group --></div>
     59<!-- /wp:column --></div>
     60<!-- /wp:columns --></main>
     61<!-- /wp:group --></div>
     62<!-- /wp:group -->
     63
    8364    <!-- wp:template-part {"slug":"footer","theme":"psychotherapy","tagName":"footer"} /-->
  • psychotherapy/1.0.9/templates/single.html

    r278404 r299141  
    22
    33<!-- wp:group {"layout":{"type":"constrained","contentSize":"80%"}} -->
    4 <div class="wp-block-group"><!-- wp:cover {"customOverlayColor":"var(\u002d\u002dwp\u002d\u002dpreset\u002d\u002dcolor\u002d\u002daccent)","isUserOverlayColor":true,"minHeight":100,"isDark":false,"align":"full","style":{"spacing":{"blockGap":"24px","padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
    5     <div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);min-height:100px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-100 has-background-dim" style="background-color:var(--wp--preset--color--accent)"></span><div class="wp-block-cover__inner-container"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"textColor":"background","fontSize":"extra-large"} /--></div></div>
    6     <!-- /wp:cover --></div>
    7     <!-- /wp:group -->
    8    
    9     <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","contentSize":"80%"}} -->
    10     <div class="wp-block-group alignfull" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","align":"full","className":"no-margin no-padding","style":{"spacing":{"padding":{"top":"60px","bottom":"60px"}}},"backgroundColor":"background","layout":{"inherit":true,"type":"constrained","contentSize":"80%"}} -->
    11     <main class="wp-block-group alignfull no-margin no-padding has-background-background-color has-background" style="padding-top:60px;padding-bottom:60px"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":"60px"}}} -->
    12     <div class="wp-block-columns alignwide"><!-- wp:column {"width":"","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
    13     <div class="wp-block-column" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","className":"animated animated-fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
    14     <main class="wp-block-group animated animated-fadeInUp"><!-- wp:group {"align":"wide","layout":{"inherit":true,"type":"constrained","contentSize":"100%"}} -->
    15     <div class="wp-block-group alignwide"><!-- wp:post-featured-image {"align":"wide","style":{"spacing":{"margin":{"bottom":"0px","top":"0px","right":"0px","left":"0px"}}}} /-->
    16    
    17     <!-- wp:group {"layout":{"type":"default"}} -->
    18     <div class="wp-block-group"><!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"upper-heading","fontFamily":"poppins","layout":{"type":"flex","flexWrap":"wrap"}} -->
    19     <div class="wp-block-group has-primary-color has-text-color has-link-color has-poppins-font-family has-upper-heading-font-size"><!-- wp:post-author {"showAvatar":false,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
    20    
    21     <!-- wp:paragraph -->
    22     <p>| </p>
    23     <!-- /wp:paragraph -->
    24    
    25     <!-- wp:post-date /-->
    26    
    27     <!-- wp:paragraph -->
    28     <p>| </p>
    29     <!-- /wp:paragraph -->
    30    
    31     <!-- wp:post-terms {"term":"category"} /--></div>
    32     <!-- /wp:group --></div>
    33     <!-- /wp:group -->
    34    
    35     <!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"15px"}}} -->
    36     <div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"fontFamily":"poppins","layout":{"inherit":false}} /--></div>
    37     <!-- /wp:group --></div>
    38     <!-- /wp:group -->
    39    
    40     <!-- wp:group {"align":"wide","className":"has-raleway-font-family","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"fontSize":"small","layout":{"inherit":true,"type":"constrained","contentSize":"100%"}} -->
    41     <div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
    42     <!-- /wp:group -->
    43    
    44     <!-- wp:group {"align":"wide","className":"has-raleway-font-family","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"fontSize":"small","layout":{"inherit":true,"type":"constrained","contentSize":"100%"}} -->
    45     <div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
    46     <div class="wp-block-group"><!-- wp:post-navigation-link {"type":"previous"} /-->
    47    
    48     <!-- wp:post-navigation-link /--></div>
    49     <!-- /wp:group --></div>
    50     <!-- /wp:group -->
    51    
    52     <!-- wp:group {"align":"wide","className":"has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp","style":{"spacing":{"blockGap":"80px","padding":{"top":"5px","right":"5px","bottom":"5px","left":"5px"}}},"backgroundColor":"background-secondary","layout":{"inherit":true,"type":"constrained"}} -->
    53     <div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px"><!-- wp:comments {"legacy":true,"align":"wide","className":"no-margin no-padding","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"fontFamily":"poppins"} /-->
    54    
    55     <!-- wp:group {"align":"wide","className":"related-post","layout":{"type":"constrained"}} -->
    56     <div class="wp-block-group alignwide related-post"><!-- wp:heading {"level":3,"align":"wide"} -->
    57     <h3 class="wp-block-heading alignwide">Related Post</h3>
    58     <!-- /wp:heading -->
    59    
    60     <!-- wp:query {"queryId":27,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"align":"wide"} -->
    61     <div class="wp-block-query alignwide"><!-- wp:post-template {"layout":{"type":"grid","columnCount":3}} -->
    62     <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30","right":"var:preset|spacing|30"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
    63     <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:post-featured-image /-->
    64    
    65     <!-- wp:post-title {"isLink":true} /-->
    66    
    67     <!-- wp:post-excerpt {"moreText":"Read More","excerptLength":20} /--></div>
    68     <!-- /wp:group -->
    69     <!-- /wp:post-template --></div>
    70     <!-- /wp:query --></div>
    71     <!-- /wp:group --></div>
    72     <!-- /wp:group --></main>
    73     <!-- /wp:group --></div>
    74     <!-- /wp:column -->
    75    
    76     <!-- wp:column {"width":"30%"} -->
    77     <div class="wp-block-column" style="flex-basis:30%"><!-- wp:template-part {"slug":"sidebar","theme":"psychotherapy","tagName":"div"} /--></div>
    78     <!-- /wp:column --></div>
    79     <!-- /wp:columns --></main>
    80     <!-- /wp:group --></div>
    81     <!-- /wp:group -->
    82    
     4<div class="wp-block-group"><!-- wp:cover {"customOverlayColor":"var(--wp--preset--color--accent)","isUserOverlayColor":true,"minHeight":100,"isDark":false,"align":"full","style":{"spacing":{"blockGap":"24px","padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
     5<div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);min-height:100px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-100 has-background-dim" style="background-color:var(--wp--preset--color--accent)"></span><div class="wp-block-cover__inner-container"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"textColor":"background","fontSize":"extra-large"} /-->
     6
     7<!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background","className":"banner-meta","layout":{"type":"flex","allowOrientation":false,"justifyContent":"center","flexWrap":"wrap"},"fontSize":"normal","fontFamily":"roboto"} -->
     8<div class="wp-block-group alignwide banner-meta has-background-color has-text-color has-link-color has-raleway-font-family has-normal-font-size"><!-- wp:post-author {"showAvatar":false,"showBio":false} /-->
     9
     10<!-- wp:paragraph -->
     11<p>|</p>
     12<!-- /wp:paragraph -->
     13
     14<!-- wp:post-date /-->
     15
     16<!-- wp:paragraph -->
     17<p>|</p>
     18<!-- /wp:paragraph -->
     19
     20<!-- wp:post-terms {"term":"category","fontSize":"17px"} /--></div>
     21<!-- /wp:group --></div></div>
     22<!-- /wp:cover --></div>
     23<!-- /wp:group -->
     24
     25<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","contentSize":"80%"}} -->
     26<div class="wp-block-group alignfull" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","align":"full","style":{"spacing":{"padding":{"top":"60px","bottom":"60px"}}},"backgroundColor":"background","className":"no-margin no-padding","layout":{"inherit":true,"type":"constrained","contentSize":"80%"}} -->
     27<main class="wp-block-group alignfull no-margin no-padding has-background-background-color has-background" style="padding-top:60px;padding-bottom:60px"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":"60px"}}} -->
     28<div class="wp-block-columns alignwide"><!-- wp:column {"width":"","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
     29<div class="wp-block-column" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"tagName":"main","className":"animated animated-fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
     30<main class="wp-block-group animated animated-fadeInUp"><!-- wp:group {"align":"wide","layout":{"inherit":true,"type":"constrained"}} -->
     31<div class="wp-block-group alignwide"><!-- wp:post-featured-image {"align":"wide","style":{"spacing":{"margin":{"bottom":"0px","top":"0px","right":"0px","left":"0px"}}}} /-->
     32
     33<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"15px"}}} -->
     34<div class="wp-block-group alignwide"><!-- wp:post-content {"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"layout":{"inherit":false},"fontFamily":"roboto"} /--></div>
     35<!-- /wp:group --></div>
     36<!-- /wp:group -->
     37
     38<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
     39<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"17px","fontFamily":"roboto"} -->
     40<div class="wp-block-group alignwide has-raleway-font-family has-upper-heading-font-size"><!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
     41<!-- /wp:group --></div>
     42<!-- /wp:group -->
     43
     44<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","bottom":"20px"}}},"className":"has-raleway-font-family","layout":{"inherit":true,"type":"constrained"},"fontSize":"small"} -->
     45<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size" style="padding-top:0px;padding-bottom:20px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"},"fontSize":"small","fontFamily":"roboto"} -->
     46<div class="wp-block-group alignwide has-raleway-font-family has-small-font-size"><!-- wp:post-navigation-link {"type":"previous","fontSize":"medium"} /-->
     47
     48<!-- wp:post-navigation-link {"fontSize":"medium"} /--></div>
     49<!-- /wp:group --></div>
     50<!-- /wp:group -->
     51
     52<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"80px","padding":{"top":"5px","right":"5px","bottom":"5px","left":"5px"}}},"backgroundColor":"background-secondary","className":"has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp","layout":{"inherit":true,"type":"constrained"}} -->
     53<div class="wp-block-group alignwide has-no-hover-shadow-dark animated animated-fadeInUp fadeInUp has-background-secondary-background-color has-background" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px"><!-- wp:comments {"legacy":true,"align":"wide","style":{"typography":{"fontSize":"18px","lineHeight":"2"}},"className":"no-margin no-padding","fontFamily":"roboto"} /--></div>
     54<!-- /wp:group --></main>
     55<!-- /wp:group --></div>
     56<!-- /wp:column -->
     57
     58<!-- wp:column {"width":"30%"} -->
     59<div class="wp-block-column" style="flex-basis:30%"><!-- wp:template-part {"slug":"sidebar","theme":"psychotherapy","tagName":"div"} /--></div>
     60<!-- /wp:column --></div>
     61<!-- /wp:columns --></main>
     62<!-- /wp:group --></div>
     63<!-- /wp:group -->
     64
    8365    <!-- wp:template-part {"slug":"footer","theme":"psychotherapy","tagName":"footer"} /-->
Note: See TracChangeset for help on using the changeset viewer.