Spaces:
Running
Running
Rename acknowledgments.py to Publishers.py
Browse files- pages/Publishers.py +151 -0
- pages/acknowledgments.py +0 -0
pages/Publishers.py
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Set page config
|
4 |
+
st.set_page_config(page_title="Acknowledgments", page_icon="🙏")
|
5 |
+
|
6 |
+
# Custom CSS
|
7 |
+
st.markdown("""
|
8 |
+
<style>
|
9 |
+
.main-title {
|
10 |
+
font-size: 2.5rem;
|
11 |
+
color: #c0392b;
|
12 |
+
text-align: center;
|
13 |
+
margin-bottom: 1rem;
|
14 |
+
}
|
15 |
+
.publisher-container {
|
16 |
+
background-color: #f8faff;
|
17 |
+
border: 1px solid #e1e4f2;
|
18 |
+
border-radius: 8px;
|
19 |
+
padding: 20px;
|
20 |
+
margin: 10px 0;
|
21 |
+
}
|
22 |
+
.publisher-grid {
|
23 |
+
display: grid;
|
24 |
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
25 |
+
gap: 15px;
|
26 |
+
}
|
27 |
+
.publisher-item {
|
28 |
+
background-color: #fff;
|
29 |
+
border: 1px solid #e1e4f2;
|
30 |
+
border-radius: 6px;
|
31 |
+
padding: 10px;
|
32 |
+
transition: all 0.3s ease;
|
33 |
+
}
|
34 |
+
.publisher-item:hover {
|
35 |
+
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
|
36 |
+
transform: translateY(-2px);
|
37 |
+
}
|
38 |
+
.section-header {
|
39 |
+
color: #3f51b5;
|
40 |
+
margin-top: 20px;
|
41 |
+
margin-bottom: 15px;
|
42 |
+
}
|
43 |
+
</style>
|
44 |
+
<div class="main-title">Publisher Acknowledgments</div>
|
45 |
+
""", unsafe_allow_html=True)
|
46 |
+
|
47 |
+
# Introduction text
|
48 |
+
st.markdown("""
|
49 |
+
We extend our sincere gratitude to all publishers whose works have contributed to this
|
50 |
+
educational resource. This application would not be possible without their dedication
|
51 |
+
to preserving and sharing spiritual wisdom.
|
52 |
+
|
53 |
+
The texts used in this application represent a diverse collection of Indian spiritual
|
54 |
+
literature, carefully selected to provide comprehensive insights into various spiritual
|
55 |
+
traditions and philosophies.
|
56 |
+
""")
|
57 |
+
|
58 |
+
# List of publishers
|
59 |
+
st.markdown('<h2 class="section-header">Publishers</h2>', unsafe_allow_html=True)
|
60 |
+
|
61 |
+
publishers = [
|
62 |
+
"A Dutton Paperback - E. P. DUTTON - NEW YORK",
|
63 |
+
"Advaita Ashrama, Kolkata (Calcutta)",
|
64 |
+
"AHAM Publications - Asheboro, NC - U.S.A.",
|
65 |
+
"ARKANA - PENGUIN BOOKS",
|
66 |
+
"BELL TOWER / NEW YORK",
|
67 |
+
"BLUE DOVE PRESS SAN DIEGO • CALIFORNIA",
|
68 |
+
"Chetana",
|
69 |
+
"Clydesdale Press®",
|
70 |
+
"Collier Books, New York - Collier Macmillan Publishers, London",
|
71 |
+
"Compiled by the Dharmic Scriptures Team",
|
72 |
+
"COSMO PUBLICATIONS - NEW DELHI INDIA",
|
73 |
+
"David Godman, Avadhuta Foundation, Colorado, USA",
|
74 |
+
"GANESH & CO., MADRAS LUZAC & CO., LONDON",
|
75 |
+
"Gita Press, Gorakhpur, India",
|
76 |
+
"Hampton Roads Publishing Company, Inc.",
|
77 |
+
"HarperOne - An Imprint of HarperCollins Publishers",
|
78 |
+
"HAY HOUSE, INC.",
|
79 |
+
"ISKCON PRESS - Division of the International Society for Krishna Consciousness",
|
80 |
+
"Element Books Ltd",
|
81 |
+
"Lama Foundation",
|
82 |
+
"Love Serve Remember Foundation or Hanuman Foundation - Santa FE, NM",
|
83 |
+
"P. Ramanath Pai Press",
|
84 |
+
"THE PHILOSOPHICAL LIBRARY, INC. - New York, N.Y.",
|
85 |
+
"World Wisdom, Inc.",
|
86 |
+
"Lokenath Divine Life Mission - Kolkata",
|
87 |
+
"LONDON - GEORGE ALLEN & UNWIN LTD RUSKIN HOUSE • MUSEUM STREET",
|
88 |
+
"Love Serve Remember Foundation",
|
89 |
+
"MOTILAL BANARSIDASS",
|
90 |
+
"OTAM Books",
|
91 |
+
"OTTO HARRASSOWITZ- WIESBADEN",
|
92 |
+
"Prabhupāda Saṅkīrtana Society (England)",
|
93 |
+
"PRABUDDHA BHARATA or AWAKENED INDIA",
|
94 |
+
"PROBSTHAIN & CO., ORIENTAL BOOKSELLERS AND PUBLISHERS, LONDON",
|
95 |
+
"Prof. M. RANGACHARYA MEMORIAL TRUST TRIPLICANE",
|
96 |
+
"PUBLISHED FOR THE BOMBAY THEOSOPHICAL PUBLICATION FUND BY RAJARAM TUKARAM TATYA",
|
97 |
+
"Rudra Press",
|
98 |
+
"Rupa Publications India Pvt. Ltd.",
|
99 |
+
"SELF-REALIZATION FELLOWSHIP - Los Angeles, California",
|
100 |
+
"Shambhala Publications, Inc.",
|
101 |
+
"SHANTI SADAN 2 9 CBBPSTOW VILLAS LONDON, W.11 1952 - Printed in Great Britain at the BURLEIGH PRESS, Lewins Mead, BRISTOL",
|
102 |
+
"Shree Gurudev Ashram",
|
103 |
+
"SHREE SHREE ANANDAMAYEE CHARITABLE SOCIETY - CALCUTTA",
|
104 |
+
"SHREE SHREE ANANDAMAYEE SANGHA - KANKHAL, HARIDWAR",
|
105 |
+
"Shree Shree Ma Anandamayee Archive®",
|
106 |
+
"Shri Sai Baba Sansthan, Shirdi",
|
107 |
+
"Sounds True - BOULDER, COLORADO",
|
108 |
+
"Sri Aurobindo Ashram Publication Department",
|
109 |
+
"SRI KAINCHI HANUMAN MANDIR & ASHRAM - KAINCHI, DISTRICT NAINITAL",
|
110 |
+
"SRI RAMAKRISHNA MATH",
|
111 |
+
"Sri Ramanasramam - Tiruvannamalai",
|
112 |
+
"Taos Music & Art, Inc.",
|
113 |
+
"THE ACORN PRESS - Durham, North Carolina",
|
114 |
+
"THE BHAKTIVEDANTA BOOK TRUST",
|
115 |
+
"THE DIVINE LIFE SOCIETY",
|
116 |
+
"The Divine Life Society Sivananda Ashram, Rishikesh, India",
|
117 |
+
"The Theosophical Publishing House, Chennai",
|
118 |
+
"celextel.org",
|
119 |
+
"Sri Ramakrishna Math, Chennai",
|
120 |
+
"Yogi Impressions Books Pvt. Ltd.",
|
121 |
+
"Yogoda Satsanga Society of India",
|
122 |
+
"ZEN PUBLICATIONS - A Division of Maoli Media Private Limited"
|
123 |
+
]
|
124 |
+
|
125 |
+
# Display publishers in a grid
|
126 |
+
st.markdown('<div class="publisher-container">', unsafe_allow_html=True)
|
127 |
+
st.markdown('<div class="publisher-grid">', unsafe_allow_html=True)
|
128 |
+
|
129 |
+
for publisher in publishers:
|
130 |
+
st.markdown(f'<div class="publisher-item">{publisher}</div>', unsafe_allow_html=True)
|
131 |
+
|
132 |
+
st.markdown('</div>', unsafe_allow_html=True)
|
133 |
+
st.markdown('</div>', unsafe_allow_html=True)
|
134 |
+
|
135 |
+
# Statement at the bottom
|
136 |
+
st.markdown("""
|
137 |
+
---
|
138 |
+
|
139 |
+
### About the Texts
|
140 |
+
The texts represented in this application cover a wide range of spiritual traditions including
|
141 |
+
Advaita Vedanta, Bhakti Yoga, Kashmir Shaivism, Tantra, Yoga and Kriya Yoga traditions,
|
142 |
+
Buddhist philosophy, Jainism, Sikhism, South Indian Vaishnavism, Sufism, and the teachings
|
143 |
+
of various saints and spiritual masters from India and beyond. These texts embody centuries
|
144 |
+
of spiritual inquiry, devotion, and wisdom.
|
145 |
+
|
146 |
+
### Copyright Notice
|
147 |
+
We acknowledge that all rights to the original texts remain with their respective publishers and
|
148 |
+
copyright holders. This application serves purely educational purposes and does not claim ownership
|
149 |
+
of any of the source materials. The content is presented in summarized form with appropriate citations,
|
150 |
+
and we have intentionally implemented word limits and other measures to respect copyright.
|
151 |
+
""")
|
pages/acknowledgments.py
DELETED
File without changes
|