Initial commit: Atomaste website

This commit is contained in:
2025-12-10 12:17:30 -05:00
commit 0b9e5d1605
19260 changed files with 5206382 additions and 0 deletions

View File

@@ -0,0 +1,330 @@
<?php
/**
* Theme functions and definitions
*
* @package Software_Company
*/
/**
* After setup theme hook
*/
function software_commpany_theme_setup(){
/*
* Make chile theme available for translation.
* Translations can be filed in the /languages/ directory.
*/
load_child_theme_textdomain( 'software-company', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'software_commpany_theme_setup' );
/**
* Load assets.
*
*/
function software_commpany_enqueue_styles_and_scripts() {
$my_theme = wp_get_theme();
$version = $my_theme['Version'];
wp_enqueue_style( 'rara-business-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'software-company-style', get_stylesheet_directory_uri() . '/style.css', array( 'rara-business-style' ), $version );
}
add_action( 'wp_enqueue_scripts', 'software_commpany_enqueue_styles_and_scripts' );
/**
* Software Company Theme Info
*/
function rara_business_customizer_theme_info( $wp_customize ) {
$wp_customize->add_section( 'theme_info_section', array(
'title' => __( 'Demo & Documentation' , 'software-company' ),
'priority' => 6,
) );
/** Important Links */
$wp_customize->add_setting( 'theme_info_setting',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$theme_info = '<p>';
/* translators: 1: string, 2: preview url, 3: string */
$theme_info .= sprintf( '%1$s<a href="%2$s" target="_blank">%3$s</a>', esc_html__( 'Demo Link : ', 'software-company' ), esc_url( __( 'https://rarathemes.com/previews/?theme=software-company', 'software-company' ) ), esc_html__( 'Click here.', 'software-company' ) );
$theme_info .= '</p><p>';
/* translators: 1: string, 2: documentation url, 3: string */
$theme_info .= sprintf( '%1$s<a href="%2$s" target="_blank">%3$s</a>', esc_html__( 'Documentation Link : ', 'software-company' ), esc_url( 'https://docs.rarathemes.com/docs/software-company/' ), esc_html__( 'Click here.', 'software-company' ) );
$theme_info .= '</p>';
$wp_customize->add_control( new Rara_Business_Note_Control( $wp_customize,
'theme_info_setting',
array(
'section' => 'theme_info_section',
'description' => $theme_info
)
)
);
}
add_action( 'customize_register', 'rara_business_customizer_theme_info', 15 );
/**
* Add demo content info
*/
function rara_business_customizer_demo_content( $wp_customize ) {
$wp_customize->add_section( 'demo_content_section' , array(
'title' => __( 'Demo Content Import' , 'software-company' ),
'priority' => 7,
));
$wp_customize->add_setting(
'demo_content_instruction',
array(
'sanitize_callback' => 'wp_kses_post'
)
);
/* translators: 1: string, 2: url, 3: string */
$demo_content_description = sprintf( '%1$s<a class="documentation" href="%2$s" target="_blank">%3$s</a>', esc_html__( 'Software Company comes with demo content import feature. You can import the demo content with just one click. For step-by-step video tutorial, ', 'software-company' ), esc_url( 'https://rarathemes.com/blog/import-demo-content-rara-themes/' ), esc_html__( 'Click here', 'software-company' ) );
$wp_customize->add_control(
new Rara_Business_Note_Control(
$wp_customize,
'demo_content_instruction',
array(
'section' => 'demo_content_section',
'description' => $demo_content_description
)
)
);
$theme_demo_content_desc = '';
$theme_demo_content_desc .= '<span class="sticky_info_row download-link"><label class="row-element">' . __( 'Download Demo Content', 'software-company' ) . ': </label><a href="' . esc_url( 'https://docs.rarathemes.com/docs/software-company/theme-activation-and-installation/how-to-import-demo-content/' ) . '" target="_blank">' . __( 'Click here', 'software-company' ) . '</a></span><br />';
if( ! class_exists( 'RDDI_init' ) ) {
$theme_demo_content_desc .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Plugin required', 'software-company' ) . ': </label><a href="' . esc_url( 'https://wordpress.org/plugins/rara-one-click-demo-import/' ) . '" target="_blank">' . __( 'Rara One Click Demo Import', 'software-company' ) . '</a></span><br />';
}
$wp_customize->add_setting( 'theme_demo_content_info',array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
));
// Demo content
$wp_customize->add_control( new Rara_Business_Note_Control( $wp_customize ,'theme_demo_content_info',array(
'section' => 'demo_content_section',
'description' => $theme_demo_content_desc
)));
}
add_action( 'customize_register', 'rara_business_customizer_demo_content', 15 );
/**
* Modifiy customizer control from child theme
*/
function software_company_customizer_register_controls( $wp_customize ) {
// Remove controls
$wp_customize->remove_control('ed_header_contact_details');
$wp_customize->remove_control('header_phone');
$wp_customize->remove_control('header_address');
$wp_customize->remove_control('header_email');
}
add_action( 'customize_register', 'software_company_customizer_register_controls', 15 );
function rara_business_header(){
$default_options = rara_business_default_theme_options(); // Get default theme options
$icon = get_theme_mod( 'custom_link_icon', $default_options['custom_link_icon'] );
$label = get_theme_mod( 'custom_link_label', $default_options['custom_link_label'] );
$ed_header_social = get_theme_mod( 'ed_header_social_links', $default_options['ed_header_social_links'] );
$social_links = get_theme_mod( 'header_social_links', $default_options['header_social_links'] );
$link = get_theme_mod( 'custom_link', $default_options['custom_link'] ); ?>
<header id="masthead" class="site-header" itemscope itemtype="https://schema.org/WPHeader">
<?php
if( ! ( $link && $label ) && ! ( $ed_header_social && ! empty( $social_links ) ) ){
$class = ' hide-header-top';
} else {
$class ='';
}
?>
<div class="header-t<?php echo esc_attr( $class ); ?>">
<div class="container">
<?php
rara_business_social_links( $ed_header_social, $social_links );
if( $link && $label ){ ?>
<div class="inquiry-btn">
<?php rara_business_custom_link( $icon, $link, $label ); ?>
</div>
<?php
}
?>
<button id="primary-toggle-button" data-toggle-target=".main-menu-modal" data-toggle-body-class="showing-main-menu-modal" aria-expanded="false" data-set-focus=".close-main-nav-toggle">
<span></span>
<span></span>
<span></span>
</button>
</div>
<div class="responsive-menu-holder">
<div class="container">
<nav id="mobile-site-navigation" class="main-navigation mobile-navigation">
<div class="primary-menu-list main-menu-modal cover-modal" data-modal-target-string=".main-menu-modal">
<button class="close close-main-nav-toggle" data-toggle-target=".main-menu-modal" data-toggle-body-class="showing-main-menu-modal" aria-expanded="false" data-set-focus=".main-menu-modal"><i class = "fas fa-times"> </i> </button>
<div class= "social-networks-holder">
<div class="container">
<?php rara_business_social_links( $ed_header_social, $social_links ); ?>
</div>
</div>
<div class="mobile-menu" aria-label="<?php esc_attr_e( 'Mobile', 'software-company' ); ?>">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'menu_id' => 'mobile-primary-menu',
'menu_class' => 'nav-menu main-menu-modal',
'container' => false,
'fallback_cb' => 'rara_business_primary_menu_fallback',
) );
if( $link && $label ) rara_business_custom_link( $icon, $link, $label ); ?>
</div>
</div>
</nav><!-- #mobile-site-navigation -->
</div>
</div>
</div>
<div class="main-header">
<div class="container">
<?php
$display_header_text = get_theme_mod( 'header_text', 1 );
$site_title = get_bloginfo( 'name', 'display' );
$description = get_bloginfo( 'description', 'display' );
if( ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) && $display_header_text && ( ! empty( $site_title ) || ! empty( $description ) ) ){
$branding_class = ' logo-with-site-identity';
} else {
$branding_class = '';
}
?>
<div class="site-branding<?php echo esc_attr( $branding_class ); ?>" itemscope itemtype="https://schema.org/Organization">
<?php
if( function_exists( 'has_custom_logo' ) && has_custom_logo() ){
the_custom_logo();
}
echo '<div class="text-logo">';
if( is_front_page() ){ ?>
<h1 class="site-title" itemprop="name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" itemprop="url"><?php bloginfo( 'name' ); ?></a></h1>
<?php } else { ?>
<p class="site-title" itemprop="name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" itemprop="url"><?php bloginfo( 'name' ); ?></a></p>
<?php
}
if ( $description || is_customize_preview() ){ ?>
<p class="site-description" itemprop="description"><?php echo $description; ?></p>
<?php
}
echo '</div><!-- .text-logo -->';
?>
</div>
<div class="right">
<nav id="site-navigation" class="main-navigation" itemscope itemtype="https://schema.org/SiteNavigationElement">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'menu_id' => 'primary-menu',
'fallback_cb' => 'rara_business_primary_menu_fallback',
) );
?>
</nav><!-- #site-navigation -->
</div>
</div>
</div>
</header>
<?php
}
/**
* Footer Bottom
*/
function rara_business_footer_bottom(){ ?>
<div class="footer-b">
<?php
rara_business_get_footer_copyright();
echo '<span class="by">';
echo esc_html__( 'Software Company | Developed By ', 'software-company' );
echo '<a href="' . esc_url( 'https://rarathemes.com/' ) .'" rel="nofollow" target="_blank">' . esc_html__( 'Rara Theme', 'software-company' ) . '</a>.';
echo '</span>';
/* translators: 1: poweredby, 2: link, 3: span tag closed */
printf( esc_html__( ' %1$sPowered by %2$s%3$s', 'software-company' ), '<span class="powered-by">', '<a href="'. esc_url( __( 'https://wordpress.org/', 'software-company' ) ) .'" target="_blank">WordPress</a>.', '</span>' );
if ( function_exists( 'the_privacy_policy_link' ) ) {
the_privacy_policy_link( '<span class="policy_link">', '</span>');
}
?>
</div>
<?php
}
/**
* Register custom fonts.
*/
function rara_business_fonts_url() {
$fonts_url = '';
/*
* Translators: If there are characters in your language that are not
* supported by Poppins fonts, translate this to 'off'. Do not translate
* into your own language.
*/
$poppins_font = _x( 'on', 'Poppins font: on or off', 'software-company' );
/*
* Translators: If there are characters in your language that are not
* supported by Nunito fonts, translate this to 'off'. Do not translate
* into your own language.
*/
$nunito_font = _x( 'on', 'Nunito font: on or off', 'software-company' );
if ( 'off' !== $poppins_font || 'off' !== $nunito_font ) {
$font_families = array();
if ( 'off' !== $poppins_font ) {
$font_families[] = 'Poppins:100,100i,300,300i,400,400i,700,700i,900,900i';
}
if ( 'off' !== $nunito_font ) {
$font_families[] = 'Nunito:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i';
}
$query_args = array(
'family' => urlencode( implode( '|', $font_families ) ),
'subset' => urlencode( 'latin,latin-ext' ),
'display' => urlencode( 'fallback' ),
);
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return esc_url( $fonts_url );
}

View File

@@ -0,0 +1,154 @@
# <!=Copyright (C) 2021 Rara Theme
# This file is distributed under the GNU General Public License v3 or later.=!>
msgid ""
msgstr ""
"Project-Id-Version: Software Company 1.0.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/software-company\n"
"POT-Creation-Date: 2021-07-21 12:50:03+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: functions.php:39
msgid "Demo & Documentation"
msgstr ""
#: functions.php:54
#. translators: 1: string, 2: preview url, 3: string
msgid "Demo Link : "
msgstr ""
#: functions.php:54
msgid "https://rarathemes.com/previews/?theme=software-company"
msgstr ""
#: functions.php:54 functions.php:59
msgid "Click here."
msgstr ""
#: functions.php:59
#. translators: 1: string, 2: documentation url, 3: string
msgid "Documentation Link : "
msgstr ""
#: functions.php:80
msgid "Demo Content Import"
msgstr ""
#: functions.php:92
#. translators: 1: string, 2: url, 3: string
msgid ""
"Software Company comes with demo content import feature. You can import the "
"demo content with just one click. For step-by-step video tutorial, "
msgstr ""
#: functions.php:92 functions.php:108
msgid "Click here"
msgstr ""
#: functions.php:108
msgid "Download Demo Content"
msgstr ""
#: functions.php:111
msgid "Plugin required"
msgstr ""
#: functions.php:111
msgid "Rara One Click Demo Import"
msgstr ""
#: functions.php:192
msgid "Mobile"
msgstr ""
#: functions.php:274
msgid "Software Company | Developed By "
msgstr ""
#. Author of the plugin/theme
msgid "Rara Theme"
msgstr ""
#: functions.php:279
#. translators: 1: poweredby, 2: link, 3: span tag closed
msgid " %1$sPowered by %2$s%3$s"
msgstr ""
#: functions.php:279
msgid "https://wordpress.org/"
msgstr ""
#. Theme Name of the plugin/theme
msgid "Software Company"
msgstr ""
#. Theme URI of the plugin/theme
msgid "https://rarathemes.com/wordpress-themes/software-company/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Software Company is a child theme of Rara Business Free WordPress theme. "
"The theme is suitable for creating a mobile-responsive, fast loading, and "
"SEO optimized website of small business, IT company, software company, web "
"agency, consulting agency, and other large corporate houses. Software "
"Company is a multipurpose theme that anyone can use -- you dont need to "
"have any coding experience to create a business website with this theme. "
"The theme looks clean and professional, and comes with advanced features "
"and style that will help you easily impress your visitors and convert them "
"into the regular customers. Software Company features multiple "
"Call-To-Action buttons that makes sure that your visitors buy or subscribe "
"to your products. An inquiry button on the header, followed by an "
"attractive full-width video banner with two buttons will help you get the "
"utmost out of your website. You can also explain about your company, "
"services you offer, your specialties, and your team members on the "
"homepage. The theme also features an impressive and easy on the eye FAQ "
"section where you can add the most frequent queries so that new visitors "
"get their questions answered quickly. You can also display the testimonials "
"of your old clients to build the trust with new customers. Furthermore, the "
"eye-catching design of the theme adjusts itself to the screen size of the "
"devices of the visitors so that even mobile users can get flawless "
"experience on your website. Software Company Free WordPress theme also "
"features Schema Markup and speed optimized code for SEO boost. The "
"easy-to-use theme also comes with step-by-step documentation and is backed "
"with friendly and quick support. Check demo at "
"https://rarathemes.com/previews/?theme=software-company, read the "
"documentation at https://docs.rarathemes.com/docs/software-company/, and "
"get support at https://rarathemes.com/support-ticket/."
msgstr ""
#. Author URI of the plugin/theme
msgid "https://rarathemes.com/"
msgstr ""
#: functions.php:300
#. Translators: If there are characters in your language that are not supported
#. by Poppins fonts, translate this to 'off'. Do not translate into your own
#. language.
msgctxt "Poppins font: on or off"
msgid "on"
msgstr ""
#: functions.php:307
#. Translators: If there are characters in your language that are not supported
#. by Nunito fonts, translate this to 'off'. Do not translate into your own
#. language.
msgctxt "Nunito font: on or off"
msgid "on"
msgstr ""

View File

@@ -0,0 +1,74 @@
=== Software Company ===
Contributors: raratheme
Requires at least: 4.7
Requires PHP: 5.6
Tested up to: 5.8
Stable tag: 1.0.6
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
== Description ==
Software Company is a child theme of Rara Business Free WordPress theme. The theme is suitable for creating a mobile-responsive, fast loading, and SEO optimized website of small business, IT company, software company, web agency, consulting agency, and other large corporate houses. Software Company is a multipurpose theme that anyone can use -- you dont need to have any coding experience to create a business website with this theme. The theme looks clean and professional, and comes with advanced features and style that will help you easily impress your visitors and convert them into the regular customers. Software Company features multiple Call-To-Action buttons that makes sure that your visitors buy or subscribe to your products. An inquiry button on the header, followed by an attractive full-width video banner with two buttons will help you get the utmost out of your website. You can also explain about your company, services you offer, your specialties, and your team members on the homepage. The theme also features an impressive and easy on the eye FAQ section where you can add the most frequent queries so that new visitors get their questions answered quickly. You can also display the testimonials of your old clients to build the trust with new customers. Furthermore, the eye-catching design of the theme adjusts itself to the screen size of the devices of the visitors so that even mobile users can get flawless experience on your website. Software Company Free WordPress theme also features Schema Markup and speed optimized code for SEO boost. The easy-to-use theme also comes with step-by-step documentation and is backed with friendly and quick support. Check demo at https://rarathemes.com/previews/?theme=software-company, read the documentation at https://docs.rarathemes.com/docs/software-company/, and get support at https://rarathemes.com/support-ticket/.
== Installation ==
1. In your admin panel, go to Appearance > Themes and click the Add New button.
2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.
== Copyright ==
Software Company WordPress Theme, Copyright 2018 rarathemes.com
Software Company is distributed under the terms of the GNU GPL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Images used in screenshots.
Source:
- https://pxhere.com/en/photo/1411386
License: CC0
- https://pxhere.com/en/license
All other images including icon image and images used in customizer settings are self created and are under the GPL.
== Changelog ==
1.0.6
* Fixed menu accessibility
* Added link underline on post/page
1.0.5
* Fixed schema issue
* Added tested up to and require php in style header
* Changed demo link
1.0.4
* Fixed calendar widget design issue for WordPress 5.4.1.
1.0.3
* Added accessibility requirement for Skip Links, Keyboard navigation, Controls and Form labeling.
* Added Getting started page.
* Changed Documentation links.
1.0.2
* Validated readme.txt file.
* Changed raratheme.com to rarathemes.com.
1.0.1
* Made footer link no-follow.
* fix testimonial section design issue.
1.0.0
* Initial release

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

File diff suppressed because it is too large Load Diff