finished migrating to google cloud, removed static images
2
main.py
@ -10,7 +10,7 @@ staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
|
||||
|
||||
@app.route('/')
|
||||
def main():
|
||||
return render_template('index.html')
|
||||
return render_template('index.html', staticroot = staticbucketurl)
|
||||
|
||||
@app.route('/music')
|
||||
def music():
|
||||
|
@ -1,2 +1,3 @@
|
||||
Flask==1.0.2
|
||||
requests==2.20
|
||||
google.cloud.firestore==0.31.0
|
||||
|
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 6.5 MiB |
Before Width: | Height: | Size: 672 KiB |
Before Width: | Height: | Size: 10 MiB |
Before Width: | Height: | Size: 3.5 MiB |
Before Width: | Height: | Size: 2.9 MiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 842 KiB |
Before Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 6.9 MiB |
BIN
static/me.JPG
Before Width: | Height: | Size: 239 KiB |
@ -11,14 +11,14 @@
|
||||
<p>proficient in C, Java, Python</p>
|
||||
</div>
|
||||
<div class="col-3 profile">
|
||||
<img src="{{ url_for('static', filename='me.JPG') }}" height=150>
|
||||
<img src="{{ staticroot }}me.jpg" height=150>
|
||||
<p style="text-align: center">sarsoo</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gallerystrip row">
|
||||
<img src="{{ url_for('static', filename='art/freddie.jpg') }}" alt="freddie gibbs" class="col-pad-4">
|
||||
<img src="{{ url_for('static', filename='art/self.jpg') }}" alt="me" class="col-pad-4">
|
||||
<img src="{{ url_for('static', filename='art/horse.jpg') }}" alt="tempation of saint anthony" class="col-pad-4">
|
||||
<img src="{{ staticroot }}art/freddie.jpg" alt="freddie gibbs" class="col-pad-4">
|
||||
<img src="{{ staticroot }}art/self.jpg" alt="me" class="col-pad-4">
|
||||
<img src="{{ staticroot }}art/horse.jpg" alt="tempation of saint anthony" class="col-pad-4">
|
||||
</div>
|
||||
{% endblock %}
|
||||
|