Centralize page definitions

This commit is contained in:
Aleks Rutins 2025-06-05 08:50:14 -04:00
parent f5285561bb
commit 9e3f80b549
No known key found for this signature in database
4 changed files with 15 additions and 18 deletions

10
lib/pages.rb Normal file
View file

@ -0,0 +1,10 @@
module BC
def self.pages = [
['concepts', 'Concepts of Biocircuits'],
['simplest-circuit', "The Simplest Circuit"],
['repressors', 'Repressors & Leaks'],
['activators', 'Activators'],
['hill-functions', 'Ultrasensitivity & the Hill Function'],
['activators-vs-repressors', 'Choosing Between Activators & Repressors'],
]
end