Skip to content

Commit

Permalink
Adjust ordering of resource sections
Browse files Browse the repository at this point in the history
  • Loading branch information
JessterB committed Nov 27, 2024
1 parent 8ff7978 commit b6e7ed1
Showing 1 changed file with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
<div *ngIf="gene" class="section">
<div class="section-inner">
<div class="container-sm">
<h2>
Drug Development Resources
</h2>
<p class="druggability-description">
These external sites provide drug development resources.
</p>
<div
*ngFor="let r of drugDevelopmentResources; let i = index"
class="row tab-row last-row"
>
<div class="col-md-3 col-sm-8 col-8 header-title">{{ r.title }}</div>
<div class="col-md-3 col-sm-4 col-4 text-center header-link">
<a class="additional-resource-links link no-bold" href="{{ r.link }}" target="_blank">{{
r.linkText
}}</a>
</div>
<div class="col-md-6 col-sm-12 col-12 header-description">
{{ r.description }}
</div>
</div>
</div>
</div>
</div>

<ng-container *ngIf="gene">
<div *ngIf="gene.is_tep === true || gene.is_adi === true" class="section">
<div class="section-inner">
Expand Down Expand Up @@ -57,12 +30,39 @@ <h2 id="target-enabling-resources-header">Target Enabling Resources</h2>
</div>
</ng-container>

<div *ngIf="gene" class="section">
<div class="section-inner">
<div class="container-sm">
<h2>
Drug Development Resources
</h2>
<p class="druggability-description">
These external sites provide information and resources related to drug development.
</p>
<div
*ngFor="let r of drugDevelopmentResources; let i = index"
class="row tab-row last-row"
>
<div class="col-md-3 col-sm-8 col-8 header-title">{{ r.title }}</div>
<div class="col-md-3 col-sm-4 col-4 text-center header-link">
<a class="additional-resource-links link no-bold" href="{{ r.link }}" target="_blank">{{
r.linkText
}}</a>
</div>
<div class="col-md-6 col-sm-12 col-12 header-description">
{{ r.description }}
</div>
</div>
</div>
</div>
</div>

<div *ngIf="additionalResources" class="section">
<div class="section-inner">
<div class="container-sm">
<h2>Additional Resources</h2>
<p>
These external sites provide additional useful information for exploring AD targets.
These external sites provide additional information about therapeutic targets for AD and related dementias.
</p>
<div
*ngFor="let r of additionalResources; let i = index"
Expand Down

0 comments on commit b6e7ed1

Please sign in to comment.