[![Build Status](https://travis-ci.org/Automattic/_s.svg?branch=master)](https://travis-ci.org/Automattic/_s)

# Elite Stay

Welcome to the Elite Stay theme! This theme provides a flexible starting point for building your own WordPress masterpiece. It's designed to offer a robust foundation for customization and development.

## Features

- A modern workflow equipped with a command-line interface for an efficient development experience.
- Lean, well-commented, HTML5 templates offering flexibility and ease of customization.
- Custom header implementation located in `inc/custom-header.php`. Use the provided code snippet in `inc/custom-header.php` to integrate it into your `header.php` template.
- Custom template tags in `inc/template-tags.php` for maintaining clean templates and avoiding code duplication.
- Small tweaks in `inc/template-functions.php` to enhance the theming experience.
- Mobile-friendly navigation script in `js/navigation.js` to create a toggled dropdown menu on small screens.
- Well-organized starter CSS in `style.css` to kickstart your design process.
- Licensed under GPLv2 or later.

## Installation

### Requirements

Elite Stay requires the following dependencies:

- [Node.js](https://nodejs.org/)
- [Composer](https://getcomposer.org/)

### Quick Start

To begin using Elite Stay, follow these steps:

1. Clone or download this repository.
2. Rename it to your desired theme name, for example, `elite-stay`.
3. Perform a six-step find and replace across all template files:
   - Replace `'_s'` (within single quotes) with: `'elite-stay'`.
   - Replace `_s_` to capture all function names with: `hotel_management_`.
   - Update `Text Domain: _s` in `style.css` to: `Text Domain: elite-stay`.
   - Modify `<code>&nbsp;_s</code>` to `<code>&nbsp;Hotel_Management</code>`.
   - Replace `_s-` with: `elite-stay-`.
   - Change `_S_` (in uppercase) to: `HOTEL_MANAGEMENT_`.

Once the find and replace is complete, update the stylesheet header in `style.css` and customize the footer links with your information. Rename `_s.pot` in the `languages` folder to `elite-stay.pot` to match the theme's slug. You can then update or delete this README file.

### Setup and CLI Commands

To utilize all the tools included with Elite Stay, install the necessary Node.js and Composer dependencies:

```sh
$ composer install
$ npm install
