
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Theme functions and definitions
 *
 * @package HelloElementorChild
 */

/**
 * Load child theme css and optional scripts
 *
 * @return void
 */
function hello_elementor_child_enqueue_scripts() {
	$my_css_ver = date("ymd-Gis", filemtime( plugin_dir_path( __FILE__ ) . '/assets/css/custom.css' ) );
	$my_js_ver = date("ymd-Gis", filemtime( plugin_dir_path( __FILE__ ) . '/assets/js/scripts.js' ) );
	wp_enqueue_style('hello-elementor-child-style',	get_stylesheet_directory_uri() . '/style.css');
	wp_enqueue_style('custom-child-style',	get_stylesheet_directory_uri() . '/assets/css/custom.css',	false,   $my_css_ver);
	wp_enqueue_script('custom-js',	get_stylesheet_directory_uri() . '/assets/js/scripts.js', array( 'jquery' ),	$my_js_ver, true);
}
add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_scripts', 60, 1 );
