File: /home/awaldron/_buildinmotion/bim_ci/app/Controllers/Careers.php
<?php namespace App\Controllers;
class Careers extends BaseController
{
public function index()
{
$data = [];
$data['title'] = 'Careers';
$data['description'] = 'Build in Motion is always looking for capable software developers to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function software()
{
$data = [];
$data['title'] = 'Careers : Software Developer for Mobile and Web Applications';
$data['description'] = 'Build in Motion is always looking for capable Software Developer for Mobile and Web Applications to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/software';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_software');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function dotnet()
{
$data = [];
$data['title'] = 'Careers : Software Engineer - .NET';
$data['description'] = 'Build in Motion is always looking for capable Software Engineer - .NET to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/dotnet';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_dotnet');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function react()
{
$data = [];
$data['title'] = 'Careers : Front End Developer - React / React Native';
$data['description'] = 'Build in Motion is always looking for capable Front End Developers focused on ReactJS to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/react';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_react');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function fullstack()
{
$data = [];
$data['title'] = 'Careers : Full Stack Web Developer - LAMP, WordPress';
$data['description'] = 'Build in Motion is always looking for capable Full Stack Web Developer - LAMP, WordPress to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/devops';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_fullstack');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function business_development()
{
$data = [];
$data['title'] = 'Careers : Business Development Manager';
$data['description'] = 'Build in Motion is searching for an experienced Software Business Development Manager to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/business_development';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_bizdev');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
public function devops()
{
$data = [];
$data['title'] = 'Careers : DevOps Continuous Integration / Delivery Manager';
$data['description'] = 'Build in Motion is always looking for capable DevOps Continuous Integration / Delivery Manager to join our 100% remote team.';
$data['canon'] = 'https://buildinmotion.com/careers/devops';
$data['nav'] = 'jobs';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('careers_software');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
//--------------------------------------------------------------------
}