def vds(): """Renders the simon project page.""" track_event(category='projects', action='vds page visit') return render_template('vds.html', title='Variable Drag System (VDS)', year=datetime.now().year, message='')
def transcripts(): """Renders the transcripts page.""" track_event(category='transcripts', action='transcripts page visit') return render_template('transcripts.html', title='University Transcripts', year=datetime.now().year, message='')
def rc8_api(): """Renders the simon project page.""" track_event(category='projects', action='rc8_api page visit') return render_template('rc8_api.html', title='Denso RC8 Python API', year=datetime.now().year, message='')
def about(): """Renders the about page.""" track_event(category='about', action='about page visit') return render_template('about.html', title='About Me', year=datetime.now().year, message='')
def projects(): """Renders the projects page.""" track_event(category='projects', action='projects page visit') return render_template('projects.html', title='Projects', year=datetime.now().year, message='')
def contact(): """Renders the contact page.""" track_event(category='contact', action='contact page visit') return render_template('contact.html', title='Contact Info', year=datetime.now().year, message='')
def work_history(): """Renders the transcripts page.""" track_event(category='work_history', action='work_history page visit') return render_template('work_history.html', title='Work History', year=datetime.now().year, message='')
def awards_and_certifications(): """Renders the awards page.""" track_event(category='awards_and_certifications', action='awards_and_certifications page visit') return render_template('awards_and_certifications.html', title='Awards and Certifications', year=datetime.now().year, message='')
def arcstone_fts(): """Renders the simon project page.""" track_event(category='projects', action='ARCSTONE FTS page visit') return render_template( 'arcstone_fts.html', title='Achieving Instrument High Accuracy In-Orbit (ARCSTONE)', year=datetime.now().year, message='')
def simon(): """Renders the simon project page.""" track_event(category='projects', action='simon page visit') return render_template( 'simon.html', title='Sign Interfaced Machine Operating Network (SIMON)', year=datetime.now().year, message='')
def home(): """Renders the home page.""" track_event(category='home', action='home page visit') return render_template( 'index.html', title='Home Page', year=datetime.now().year, )
def dean_cert_fall_2018(): """Renders the dean certificate for fall 2018.""" track_event(category='contact', action='contact page visit') return send_file(os.getcwd() + os.path.sep + 'website' + os.path.sep + 'static' + os.path.sep + 'transcripts' + os.path.sep + '2018' + os.path.sep + 'dean_cert_fall_2018.pdf')
def robot(): """Renders the dean certificate for fall 2013.""" track_event(category='robot', action='robot stopped by') return send_file(os.getcwd() + os.path.sep + 'website' + os.path.sep + 'static' + os.path.sep + 'robots.txt')