예제 #1
0
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='')
예제 #2
0
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='')
예제 #3
0
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='')
예제 #4
0
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='')
예제 #5
0
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='')
예제 #6
0
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='')
예제 #7
0
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='')
예제 #8
0
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='')
예제 #9
0
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='')
예제 #10
0
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='')
예제 #11
0
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,
    )
예제 #12
0
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')
예제 #13
0
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')