Sant'Apollinare

Multi tool use
For other uses, see Sant'Apollinare (disambiguation).
‹ The template Infobox settlement is being considered for merging. ›
Comune in Lazio, Italy
Sant'Apollinare |
Comune |
Comune di Sant'Apollinare |
 Coat of arms
|
|
Location of Sant'Apollinare
|
Location of Sant'Apollinare in Italy
Show map of Italy
Sant'Apollinare (Lazio)
Show map of Lazio
|
Coordinates: 41°24′N 13°50′E / 41.400°N 13.833°E / 41.400; 13.833
|
Country |
Italy |
Region |
Lazio |
Province |
Frosinone (FR) |
Government
|
• Mayor |
Enzo Scittarelli |
Area
|
• Total |
17.0 km2 (6.6 sq mi) |
Elevation
|
51 m (167 ft) |
Population (28 February 2017[1])
|
• Total |
1,883 |
• Density |
110/km2 (290/sq mi) |
Demonym(s) |
Santapollinaresi |
Time zone |
UTC+1 (CET) |
• Summer (DST) |
UTC+2 (CEST) |
Postal code |
03048 |
Dialing code |
0776 |
Website |
Official website |
Sant'Apollinare (locally Santapunaro or Santapunare) is a comune (municipality) in the Province of Frosinone in the Italian region Lazio, located about 120 kilometres (75 mi) southeast of Rome and about 50 kilometres (31 mi) southeast of Frosinone.
Sant'Apollinare borders the following municipalities: Cassino, Pignataro Interamna, Rocca d'Evandro, San Giorgio a Liri, Sant'Ambrogio sul Garigliano, Sant'Andrea del Garigliano, Vallemaio.
The town originated in 797, when Gisulf, abbot of Montecassino, created here a small monastic community. In the Middle Ages it had a castle commanding the Liri-Garigliano valley, now in ruins. It became part of the Lazio region in 1927. Due to its position across the Gustav Line, during World War II it suffered relevant destructions.
References
^ All demographics and other statistics: Italian statistical institute Istat.
External links
- Official website
- Sant'Apollinare's cemetery
Lazio · Comuni of the Province of Frosinone
|
- Acquafondata
- Acuto
- Alatri
- Alvito
- Amaseno
- Anagni
- Aquino
- Arce
- Arnara
- Arpino
- Atina
- Ausonia
- Belmonte Castello
- Boville Ernica
- Broccostella
- Campoli Appennino
- Casalattico
- Casalvieri
- Cassino
- Castelliri
- Castelnuovo Parano
- Castro dei Volsci
- Castrocielo
- Ceccano
- Ceprano
- Cervaro
- Colfelice
- Colle San Magno
- Collepardo
- Coreno Ausonio
- Esperia
- Falvaterra
- Ferentino
- Filettino
- Fiuggi
- Fontana Liri
- Fontechiari
- Frosinone
- Fumone
- Gallinaro
- Giuliano di Roma
- Guarcino
- Isola del Liri
- Monte San Giovanni Campano
- Morolo
- Paliano
- Pastena
- Patrica
- Pescosolido
- Picinisco
- Pico
- Piedimonte San Germano
- Piglio
- Pignataro Interamna
- Pofi
- Pontecorvo
- Posta Fibreno
- Ripi
- Rocca d'Arce
- Roccasecca
- San Biagio Saracinisco
- San Donato Val di Comino
- San Giorgio a Liri
- San Giovanni Incarico
- San Vittore del Lazio
- Sant'Ambrogio sul Garigliano
- Sant'Andrea del Garigliano
- Sant'Apollinare
- Sant'Elia Fiumerapido
- Santopadre
- Serrone
- Settefrati
- Sgurgola
- Sora
- Strangolagalli
- Supino
- Terelle
- Torre Cajetani
- Torrice
- Trevi nel Lazio
- Trivigliano
- Vallecorsa
- Vallemaio
- Vallerotonda
- Veroli
- Vicalvi
- Vico nel Lazio
- Villa Latina
- Villa Santa Lucia
- Villa Santo Stefano
- Viticuso
|
qP0s3xLa0,b92w7oSG,z0WHtmik5nSvj,fZRRMYCdAAwB
這個網誌中的熱門文章
MGP Nordic Also known as Melodi Grand Prix Nordic Genre Song contest Created by DR Country of origin Denmark No. of episodes 5 contests Production Production location(s) Scandinavia Running time Various Distributor Nordvision Release Original network DR, NRK, SVT (2002–09) Yle Fem (2007–09) Original release 27 April 2002 ( 2002-04-27 ) – 28 November 2009 ( 2009-11-28 ) Chronology Preceded by De unges Melodi Grand Prix Related shows Dansk Melodi Grand Prix Junior Eurovision Song Contest MGP Nordic ( Melodi Grand Prix Nordic ) was a Scandinavian song contest for children aged 8 to 15, organized by DR, NRK, SVT and Yle through Yle Fem. It originated as a 2000 spin-off of Denmark's Eurovision Song Contest national final known as De unges Melodi Grand Prix , but expanded to become MGP Nordic in 2002 with the addition of Norway and Sweden. Contents 1 History 2 National selections 3 List of contests 4 ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm trying to build a Chat app UI, the idea of the Layout was pretty simple: When the input bar is focused, keyboard show up and "push" up the chat bar, as it's a grid, the ListView will resize to fit the screen: I update the input bar's margin to "push" it up: NSValue result = (NSValue)args.Notification.UserInfo.ObjectForKey(new NSString(UIKeyboard.FrameEndUserInfoKey)); CGSize keyboardSize = result.RectangleFValue.Size; if (Element != null){ Element.Margin = new Thickness(0, 0, 0,keyboardSize.Height); //push the entry up to keyboard height when keyboard is activated } And this is ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
2
Can someone explain to me how to implement the post-redirect-get pattern in Spring WebFlux and Thymeleaf? What subscribes on the database save method? @GetMapping("/register") public String showRegisterForm(Model model) { model.addAttribute("user", new User()); return "register"; } @PostMapping public String processRegisterForm(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "register"; } else { userRepository.save(user); //what subscribes on this? //how to redirect on e.g. "/login"? ...