github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume2/section4/gopherfaceform/templates/videopreview.html (about)

     1  <!DOCTYPE html>
     2  <html>
     3  <head>
     4  <link rel="stylesheet" type="text/css" href="/static/css/gopherface.css" />
     5  </head>
     6  <body>
     7  <h1>GopherFace - Video Preview</h1>
     8  
     9  <div class="sectionContainer">
    10  
    11  	<div class="imageContainer">
    12  		<img src="{{.thumbnailPath}}">
    13  
    14  	</div>
    15  
    16  	<div class="videoContainer">
    17  		<video loop autoplay width="720">
    18  		  <source src="{{.videoPath}}" type="video/mp4">
    19  		  Your browser does not support the video tag.
    20  		</video>
    21  	</div>
    22  
    23  </div>
    24  
    25  </body>
    26  </html>