-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsponsor.js
More file actions
29 lines (27 loc) · 853 Bytes
/
Copy pathsponsor.js
File metadata and controls
29 lines (27 loc) · 853 Bytes
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
class Sponsor {
constructor() {
this.el = document.getElementById('sponsors');
if (!this.el) return;
this.el.innerHTML = this.render();
}
render = () => {
// لیست حامیان بعداً اضافه میشود
return `
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title">حامیان</h1>
<p class="estedad-b">بهزودی نام و لوگوی حامیان اینجا نمایش داده میشود.</p>
</div>
</div>
</div>
<div class="row text-center">
<div class="col-12">
<a href="#pricing" class="btn btn-common">حامی شو</a>
</div>
</div>
</div>`;
};
}
new Sponsor();