-
Notifications
You must be signed in to change notification settings - Fork 2
/
mot-fulltext.html
154 lines (120 loc) · 3.17 KB
/
mot-fulltext.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[(#REM)
Un cache plus court, pour la boucle syndic_articles
]#CACHE{3600}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="#LANG" lang="#LANG" dir="#LANG_DIR">
<head>
<title>[(#ENV*{titre}|couper{50}|textebrut)][ - (#NOM_SITE_SPIP|textebrut)]</title>
<INCLURE{fond=inc-head}{couleur=8385b2}{feed=(#ENV{titre}|strtolower)} />
</head>
<body class="page_mot">
<div id="page">
[(#REM) Bandeau de la page ]
<INCLURE{fond=inc-bandeau}{titre} />
[(#REM) Contenu principal : derniers articles publies ]
<div class="hfeed" id="conteneur">
<INCLURE{fond=inc-entete}{couleur=8385b2}{onglet=actu}{titre} />
[(#REM) Si on est dans 'tag', supprimer ceux dont un tag est '_tag']
<BOUCLE_refus(ARTICLES)
{recherche _(#ENV*{recherche}|replace{'[^a-z]'})}
{doublons}
{doublons refus}
></BOUCLE_refus>
[(#REM)
Pour calculer correctement la popularite du mot,
on melange les 40 plus forts et les 10 plus populaires
]
<BOUCLE_cut(ARTICLES)
{recherche}
{!par points}
{0,40}
{type!=''}
{doublons refus}
{doublons cut}
{age < 30}
>
[(#SET{popmot,#GET{popmot}|plus{#CHAMP_SQL{popularite}}})]</BOUCLE_cut>
<BOUCLE_cut2(ARTICLES)
{recherche}
{!par popularite}
{0,10}
{type!=''}
{doublons refus}
{doublons cut}
>
[(#SET{popmot,#GET{popmot}|plus{#CHAMP_SQL{popularite}}})]</BOUCLE_cut2>
[(#ID_MOT|majpopmot{#GET{popmot}})]
<div class="central">
[(#REM) A la une ]
<BOUCLE_une(ARTICLES) {type IN une,tresbien} {doublons}
{recherche}
{par date}{inverse}{0,1}
>
<div id="chandelle"><div id="une">
[(#ID_ARTICLE|microcache{inc-entry})]
<div style="clear: both"></div>
</div></div>
</BOUCLE_une>
</div>[(#REM) /central ]
[(#REM) Derniers articles ]
<div class="central">
<div id="marge">
</div>
<div id="contenu">
<B_articles_recents>
<div class="menu articles">
<BOUCLE_articles_recents(ARTICLES)
{doublons}
{!doublons cut}
{!par date}
>
[(#ID_ARTICLE|microcache{inc-entry})]
</BOUCLE_articles_recents>
</div>
</B_articles_recents>
<B_english>
<div id="english" class="menu pavedepeches">
#ANCRE_PAGINATION
<a class="plus" title="In English" href="anglais">+</a>
<h4>In English</h4>
<BOUCLE_english(ARTICLES)
{recherche}
{lang=en}
{doublons}
{!par date}
{pagination 10}>
[(#ID_ARTICLE|microcache{inc-entry})]
</BOUCLE_english>
[<p class="pagination">(#PAGINATION)</p>]
</div>
</B_english>
</div>[(#REM) #contenu]
<div id="navigation">
<B_breves>
<div id="aussi" class="menu pavedepeches">
#ANCRE_PAGINATION
<h4>Dépêches</h4>
<BOUCLE_breves(ARTICLES)
{recherche}
{doublons}
{type=''}
{par date}{inverse} {doublons}
{pagination 20}
>
[(#ID_ARTICLE|microcache{inc-entry})]
</BOUCLE_breves>
[<p class="pagination">(#PAGINATION)</p>]
</div>
</B_breves>
[<div id="logo">
(#LOGO_MOT||image_reduire{275,99999}|inserer_attribut{class,logo})
</div>]
</div><!--#navigation-->
<div style="clear:both;"></div>
</div>[(#REM) /central ]
</div><!--#conteneur-->
[(#REM) Pied de page ]
<INCLURE{fond=inc-pied} />
</div><!--#page-->
</body>
</html>