finished migrating to google cloud, removed static images

This commit is contained in:
aj 2019-02-18 23:35:51 +00:00
parent 3819a02bfc
commit ef20bb2200
14 changed files with 6 additions and 5 deletions

View File

@ -10,7 +10,7 @@ staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
@app.route('/') @app.route('/')
def main(): def main():
return render_template('index.html') return render_template('index.html', staticroot = staticbucketurl)
@app.route('/music') @app.route('/music')
def music(): def music():

View File

@ -1,2 +1,3 @@
Flask==1.0.2 Flask==1.0.2
requests==2.20 requests==2.20
google.cloud.firestore==0.31.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 672 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 842 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

View File

@ -11,14 +11,14 @@
<p>proficient in C, Java, Python</p> <p>proficient in C, Java, Python</p>
</div> </div>
<div class="col-3 profile"> <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> <p style="text-align: center">sarsoo</p>
</div> </div>
</div> </div>
<div class="gallerystrip row"> <div class="gallerystrip row">
<img src="{{ url_for('static', filename='art/freddie.jpg') }}" alt="freddie gibbs" class="col-pad-4"> <img src="{{ staticroot }}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="{{ staticroot }}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/horse.jpg" alt="tempation of saint anthony" class="col-pad-4">
</div> </div>
{% endblock %} {% endblock %}