File: //proc/thread-self/root/home/awaldron/_buildinmotion/bim_ci/app/Controllers/Stack.php
<?php namespace App\Controllers;
class Stack extends BaseController
{
public function index()
{
$data = [];
$data['title'] = 'Tech Stack';
$data['description'] = 'Build in Motion offers software development services in a wide variety of programming languages and frameworks.';
$data['canon'] = 'https://buildinmotion.com/stack';
$data['nav'] = '';
$html = view('_header', $data);
$html .= view('_header_ui', $data);
$html .= view('stack');
$html .= view('_footer');
$html .= view('_footer_ui');
return $html;
}
//--------------------------------------------------------------------
}