aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/pubmed_modal.html
blob: 96047e9f250b571e9a630a77ed8150295bf613f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div>
            <div class="modal fade  bd-pubmed-modal-lg-{{reference.doc_id}} " id="pubmedModal-{{reference.doc_id}}" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel-{{reference.doc_id}}" aria-hidden="true">
  <div class="modal-dialog modal-lg" role="document" >
    <div class="modal-content">
      <div class="modal-header">
        
        <div style='line-height:2.6rem;line-height: 1.4;font-weight: 700;font-family: "Merriweather","Georgia","Cambria","Times New Roman","Times",serif;'>
            
        <h2 class="modal-title" id="pubmedModalLabel-{{reference.doc_id}}" style="font-weight: bold">{{reference.pubmed[0].get('title')}}</h2>
        </div>
         
        <div style="color:#0071bc; padding-top: 15px;">
            {{reference.pubmed[0].get('authors')}}
        </div>

        <h3 style="font-weight: bold;"> PMID:{{reference.pubmed[0].get('pub_id')}}</h3>

      </div>
            <div class="modal-body">
         <h3 style="font-weight:bold"> 
            Abstract 
         </h3>
   <div style="font-size:1.7rem;padding: 0 2rem;margin: 0 auto;">
        <div >{{reference.pubmed[0].get('abstract')|safe}}

        </div>           
       
   </div>
            
      </div>
      <div class="modal-footer" style="font-weight:bold;text-decoration: underline;">
        <a href="{{reference.pubmed[0].get('source')}}" target="_blank" style="float:left;">See full Article Pubmed</a>
     </div>
    </div>
  </div>
</div>
</div>