-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7452d85
commit 9c21ddb
Showing
2 changed files
with
44 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
<p>This website is a physics formulary - essentially a dictionary of physics formulae. You can use it to look up common physics formulae.</p> | ||
<p>The list of formulae is being added to all the time - if your favourite equation is not in here yet, it might be soon. You can see the source code for this project on GitHub: <a href="https://github.com/BenjaminTMilnes/PhysicsFormulae" target="_blank">https://github.com/BenjaminTMilnes/PhysicsFormulae</a>. This project has been created by B. T. Milnes.</p> | ||
<p>The list of formulae is being added to all the time - if your favourite equation is not in here yet, it might be soon. You can see the source code for this project on GitHub: <a href="https://github.com/BenjaminTMilnes/PhysicsFormulae" target="_blank" title="Physics Formulae on GitHub">https://github.com/BenjaminTMilnes/PhysicsFormulae</a>. This project has been created by <a href="http://www.benjamintmilnes.com" title="B. T. Milnes' Blog">B. T. Milnes</a>.</p> | ||
<div class="search"> | ||
<div class="search-formula" ng-repeat="formula in formulae"> | ||
<div class="search-formula-title">{{formula.Title}}</div> | ||
<h3 class="search-formula-title">{{formula.Title}}</h3> | ||
<div class="search-formula-content"> | ||
<a href="#/formula/{{formula.Reference}}"> | ||
<a href="#/formula/{{formula.Reference}}" title="{{formula.Title}}"> | ||
<katex latex="{{formula.Content}}"></katex> | ||
</a> | ||
</div> | ||
<p class="search-formula-interpretation">{{formula.Interpretation}}</p> | ||
<div class="search-formula-fields"> | ||
<span class="search-formula-field" ng-repeat="field in formula.Fields">{{field}}</span> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters